Last active
August 29, 2015 13:56
-
-
Save ryohey/8898206 to your computer and use it in GitHub Desktop.
C++ Class.xctemplate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // ___FILENAME___ | |
| // ___PROJECTNAME___ | |
| // | |
| // Created by ___FULLUSERNAME___ on ___DATE___. | |
| //___COPYRIGHT___ | |
| // | |
| #include "___FILEBASENAME___.h" | |
| ___FILEBASENAMEASIDENTIFIER___::___FILEBASENAMEASIDENTIFIER___() { | |
| } | |
| ___FILEBASENAMEASIDENTIFIER___::~___FILEBASENAMEASIDENTIFIER___() { | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // ___FILENAME___ | |
| // ___PROJECTNAME___ | |
| // | |
| // Created by ___FULLUSERNAME___ on ___DATE___. | |
| //___COPYRIGHT___ | |
| // | |
| #ifndef _____PROJECTNAMEASIDENTIFIER________FILEBASENAMEASIDENTIFIER_____ | |
| #define _____PROJECTNAMEASIDENTIFIER________FILEBASENAMEASIDENTIFIER_____ | |
| class ___FILEBASENAMEASIDENTIFIER___ { | |
| public: | |
| ___FILEBASENAMEASIDENTIFIER___(); | |
| virtual ~___FILEBASENAMEASIDENTIFIER___(); | |
| }; | |
| #endif /* defined(_____PROJECTNAMEASIDENTIFIER________FILEBASENAMEASIDENTIFIER_____) */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment