equal
deleted
inserted
replaced
|
1 /*! |
|
2 |
|
3 \page coding_style Hugo's Coding Style |
|
4 |
|
5 \todo More detailed description, an introductory paragraph, etc. |
|
6 |
|
7 \section Naming Convenions |
|
8 |
|
9 \subsection Classes |
|
10 |
|
11 \code |
|
12 AllWordsCapitalizedWithoutUnderscores |
|
13 \endcode |
|
14 |
|
15 \subsection Methods |
|
16 |
|
17 \code |
|
18 firstWordLowerCaseRestCapitalizedWithoutUnderscores |
|
19 \endcode |
|
20 |
|
21 \subsection Constants |
|
22 |
|
23 \code |
|
24 ALL_UPPER_CASE_WITH_UNDERSCORES |
|
25 \endcode |
|
26 |
|
27 \subsection %Class and instance member variables |
|
28 |
|
29 \code |
|
30 all_lower_case_with_underscores |
|
31 \endcode |
|
32 |
|
33 \subsection Auto variables (=variables used locally in methods) |
|
34 |
|
35 \code |
|
36 all_lower_case_with_underscores |
|
37 \endcode |
|
38 |
|
39 \subsection Exceptions |
|
40 |
|
41 \code |
|
42 ClassNameEndsWithException |
|
43 \endcode |
|
44 |
|
45 |
|
46 */ |