diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Coding_style | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/Coding_style b/doc/Coding_style index df5e398..eff9eea 100644 --- a/doc/Coding_style +++ b/doc/Coding_style | |||
@@ -49,3 +49,6 @@ type classname::function(...) { | |||
49 | enums must be in uppercase letters: | 49 | enums must be in uppercase letters: |
50 | enum {WHITE, RED, BLUE}; | 50 | enum {WHITE, RED, BLUE}; |
51 | 51 | ||
52 | Class data members are prefixed by m_ | ||
53 | Class member function will be organized accordning to creator, | ||
54 | manipulator and accessor categories. | ||