I am using Eclipse IDE for C/C++ Developer- Build id: 20090920-1017
We know that eclipse for C++ has built-in 'coding aids' for C/C++ developers:
1) Code completion - Automatically complete/fill method names or fields names of a class or structure. Automatically populate class structures, for loops et al
2)Templates You can create and save templates for frequently used sections of code, which will be inserted according to scope. The Content Assist feature also provides quick access to code templates.
3)C/C++ Style profiles: K&R, GNU et al specify indentation, brace and other style issues.
Do you have experience creating your own C++ Style profiles to C++ mandate naming conventions ? Are Eclipse profiles something that can be effectively used to enforce code consistency automatically ?
( Code review is still required but prefer to use a tool to get the naming conventions, indentation et al at the outset)
Thanks, Jak