Is there a way to customize the format of inclusion guards in eclipse CDT for the class generation template? The current format is <Class Name>_H, but what I would like is something like <namespace>_<namespace>_<class name>_H. Not that I expect to have classes with the same name in different namespaces within my own project, but I'd prefer not to worry about it should the case arise.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
There is hard way to do this. You can rebuild plugin CDT plugin. Information about code repository and needed enviroment for rebuild available here. In your case you need change behavior of
More about it described in this answer |
||||
|
|
|
I like Stuart's answer here: How to customize eclipse CDT code templates Just customize the template. So in the Preferences dialog under C/C++ -> Code Style -> Code Templates you can modify the template to be closer to what you need, for example if you need the namespace in the guard, you can do something like.
|
|||
|
|
#pragma once. – Reinderien Aug 13 '12 at 17:45#pragma onceis that as it's not a standard part of the language you can't be sure that any compiler (including sexy modern ones) will recognize it. Include guards are still the safest, most portable, solution. – dajames Oct 10 '12 at 13:04