Document class file name rule

This rule was followed in practice, but not documented so far.
This commit is contained in:
Georg Baum 2014-06-07 11:32:15 +02:00
parent e1d3189492
commit 5353b406e6

View File

@ -289,6 +289,10 @@ Formatting
- Members variables are underscored ('enable_this_feature_flag_') with a final '_' - Members variables are underscored ('enable_this_feature_flag_') with a final '_'
- private/protected functions are also camel-case - private/protected functions are also camel-case
- Each class is implemented in a separate pair of .h/.cpp files named like
the class. Exceptions are tiny helper classes which are closely tied to
the main class.
New types are capitalized, so this goes for typedefs, classes, structs New types are capitalized, so this goes for typedefs, classes, structs