COIN-OR::LEMON - Graph Library

source: lemon-0.x/doc/coding_style.dox @ 530:d9c06ac0b3a3

Last change on this file since 530:d9c06ac0b3a3 was 509:2784b804abb3, checked in by Alpar Juttner, 20 years ago
File size: 661 bytes
Line 
1/*!
2
3\page coding_style Hugo Coding Style
4
5\todo More detailed description, an introductory paragraph, etc.
6 
7\section Naming Convenions
8
9\subsection Classes
10
11\code
12AllWordsCapitalizedWithoutUnderscores
13\endcode
14
15\subsection Methods
16
17\code
18firstWordLowerCaseRestCapitalizedWithoutUnderscores
19\endcode
20
21\subsection Constants
22
23\code
24ALL_UPPER_CASE_WITH_UNDERSCORES
25\endcode
26
27\subsection %Class and instance member variables
28
29\code
30all_lower_case_with_underscores
31\endcode
32
33\subsection Auto variables (=variables used locally in methods)
34
35\code
36all_lower_case_with_underscores
37\endcode
38
39\subsection Exceptions
40
41\code
42ClassNameEndsWithException
43\endcode
44
45
46*/
Note: See TracBrowser for help on using the repository browser.