C++ Classhelper
Create C++ class with Headerfile
Details
Installs
- Total 11K
- Win 7K
- Mac 1K
- Linux 2K
Apr 26 | Apr 25 | Apr 24 | Apr 23 | Apr 22 | Apr 21 | Apr 20 | Apr 19 | Apr 18 | Apr 17 | Apr 16 | Apr 15 | Apr 14 | Apr 13 | Apr 12 | Apr 11 | Apr 10 | Apr 9 | Apr 8 | Apr 7 | Apr 6 | Apr 5 | Apr 4 | Apr 3 | Apr 2 | Apr 1 | Mar 31 | Mar 30 | Mar 29 | Mar 28 | Mar 27 | Mar 26 | Mar 25 | Mar 24 | Mar 23 | Mar 22 | Mar 21 | Mar 20 | Mar 19 | Mar 18 | Mar 17 | Mar 16 | Mar 15 | Mar 14 | Mar 13 | Mar 12 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 2 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 2 | 0 | 2 | 0 | 2 | 1 | 1 | 1 | 1 | 0 | 1 | 3 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 3 | 0 | 1 | 0 | 0 | 2 | 2 | 1 | 0 | 2 | 1 | 1 | 0 | 0 | 0 | 2 |
Mac | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 2 |
Linux | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 2 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 3 | 2 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 |
Readme
- Source
- raw.githubusercontent.com
C++ Class Helper Sublime Text Plugin
Sublime Text Plugin for creating/generating C++ Classes and since version 1.2.0 generate definitions for your C++ class methods.
Installation
Package Control
Install package via package control. Type CTRL+SHIFT+P on Windows or CMD+SHIFT+P on macOS and select Package Control: Install Package
and search for C++ Classhelper
Manual
Download or clone this repository.
$ git clone https://github.com/pr0grammr/cppclasshelper-sublime-text-plugin.git
Rename the downloaded folder to C++ Classhelper
.
Copy the folder in the sublime text package directory. You'll find it by clicking Preferences
-> Browse Packages
.
Usage
Class generation
Right-click on the folder in your sidebar, where you want to create your class and click Create C++ Class
. Enter your classname without file extension in the input panel. After you entered the name, hit return. The sourcefile and headerfile for your class will now be created in the folder you clicked in the sidebar.
Class method generation
Since version 1.2.0 you are able to generate definitions for your class methods.
Press CTRL + SHIFT + P to open command palette. Type in C++ Classhelper - Generate Method Definition
(or right click in your current window to select the option via context menu) and select the method you want to generate the definition.
Settings
{
// opens the class after creation
"open_after_creation": true,
// file extension in which the headerfile is created (e.g.: hpp or h)
"header_file_extension": "hpp",
// if set to false, alternative header style will be used
"use_pragma_once": true
// inserts a newline after every template
"newline_after_template": true,
// inserts newline after method definitions
// curly brackets will be placed to the next line
"newline_after_method": true,
// places the cursor inside the brackets, so you can directly start typing
"place_cursor_between_brackets": true
}
License
This plugin is published under MIT License