https://github.com/sbcd90/topcoder_editor_plugin
a topcoder editor plugin for C++
https://github.com/sbcd90/topcoder_editor_plugin
Last synced: about 1 year ago
JSON representation
a topcoder editor plugin for C++
- Host: GitHub
- URL: https://github.com/sbcd90/topcoder_editor_plugin
- Owner: sbcd90
- Created: 2012-08-23T05:17:07.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-08-23T05:22:15.000Z (almost 14 years ago)
- Last Synced: 2025-02-26T06:31:47.105Z (over 1 year ago)
- Language: Java
- Size: 89.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
This is a simple Topcoder Editor Plugin for C++.
Features:
This plugin will automatically generate the required header files & a structure comprising of your classname,methodname,return type, & parameter types.A sample is shown below:
#include
.
.
.
.
using namespace std;
class {
public:
( {parameter name},...,...){
}
};
All fields provided with <> will be automatically generated.
All fields provided with {} should be provided by user.
Adding & using the plugin:
1. Just go to "Options"->"Editors"
2. Press "add" button
3. Enter your preffered name in the "Name" field.
4. Enter "mytcplugin" in the "entrypoint" field.
5. Enter the directory name in which your plugin's .class file resides.
6. Turn on the default radio button.
6.Click on "save"->"ok"->"close".
7. Also make your default language C++
7.Open a problem
Future Improvements:
This is only Version 1 of this plugin.I'll look to add compile feature in future after topcoder makes it available.Also support for other languages may be included.