doc/coding_style.dox
changeset 41 b11737922197
parent 40 8f4e8273a458
child 209 765619b7cbb2
     1.1 --- a/doc/coding_style.dox	Mon Jan 07 19:22:09 2008 +0100
     1.2 +++ b/doc/coding_style.dox	Mon Jan 07 19:23:03 2008 +0100
     1.3 @@ -38,7 +38,7 @@
     1.4  
     1.5  
     1.6  \warning In some cases we diverge from these rules.
     1.7 -This primary done because STL uses different naming convention and
     1.8 +This is primary done because STL uses different naming convention and
     1.9  in certain cases
    1.10  it is beneficial to provide STL compatible interface.
    1.11  
    1.12 @@ -95,6 +95,14 @@
    1.13  all_lower_case_with_underscores 
    1.14  \endcode
    1.15  
    1.16 +\subsection pri-loc-var Private member variables
    1.17 +
    1.18 +Private member variables should start with underscore
    1.19 +
    1.20 +\code
    1.21 +_start_with_underscores
    1.22 +\endcode
    1.23 +
    1.24  \subsection cs-excep Exceptions
    1.25  
    1.26  When writing exceptions please comply the following naming conventions.