last update 20 Sep 2009 |
C++ Item | Name convention |
class, struct, union | theClassName |
inner type | inner_type |
public attribute | publicAttribute |
protected attribute | protectedAttribute_ |
private attribute | privateAttribute_ |
class method | classMethod() |
public method to access inner attributes | getClassAttribute() classAttribute() |
public method for complex computations | seekSomething() searchSomething() findSomething() computeSomething() generateSomething() calculateSomething() |
enum | eEnumType |
constant in enum | ConstantInEnum |
macro name | _CVR_MACRO_NAME |