COIN-OR::LEMON - Graph Library

source: lemon-0.x/doc/coding_style.dox @ 508:95f8f7171bae

Last change on this file since 508:95f8f7171bae was 507:dcfb68446843, checked in by Alpar Juttner, 20 years ago

A "related pages" about Hugo Coding Style.
To be improved.

File size: 663 bytes
Line 
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
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.