When I create a new C++ class in visual studio 2010, it generates a class with some template code. How can I modify this template to suit my own needs ?
|
|
One problem with finding info about this is most of information about creating templates is for .NET and the process is different for Visual C++. Also the answer is probably not what you want to hear because it involves editing javascript code rather than just editing some template file. It's possible that you can create a brand new wizard that uses a template file, but this is one way to modify the default template without doing that. Modifying the wizard code involves editing a javascript file: C:\Program Files\Microsoft Visual Studio 10.0\VC\VCWizards\CodeWiz\Generic\Class\Scripts\1033\default.js The javascript uses the CodeModel to manipulate (or generate, in this case) source code. Inside that file there is an
to add a new function you would do something like:
You can read about it here: Reference Documentation: |
|||
|
|
|
The default templates are in |
|||||||
|
|
(If I understand correctly) I don't think you can modify the code that is auto-generated by a wizard, for example when adding a new class. You could maybe code a new wizard ? M. |
|||
|
|
|
Checked in MVS 2008... File: C:\Program Files\Microsoft Visual Studio 9.0\VC\VCWizards\CodeWiz\Generic\Class\Scripts\1033\default.js Added code (after creating default ctor & dtor in the default.js)
But I still can't figure out how to turn off implementation in *.cpp (x.BodyText = ""; doesn't help), and omitting strImpl parameter puts the implementation in the *.h file |
||||
|
|