Changeset 955:0a066f80e05f in lemon-0.x for doc
- Timestamp:
- 11/02/04 07:28:38 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1335
- Location:
- doc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/coding_style.dox
r921 r955 12 12 developing LEMON library. 13 13 14 \warning In some cases we diverge from these rules. 15 This primary done because STL uses different naming convention and 16 in certain cases 17 it is beneficial to provide STL compatible interface. 18 19 \subsection cs-files File Names 20 21 The header file names should look like the following. 22 23 \code 24 header_file.h 25 \endcode 26 27 Note that all standard Lemon headers are located in the \c lemon subdirectory, 28 so you should include them from C++ source like this: 29 30 \code 31 #include <lemon/header_file.h> 32 \endcode 33 34 The source code files use the same style and they have '.cc' extension. 35 36 \code 37 source_code.cc 38 \endcode 39 14 40 \subsection cs-class Classes and other types 15 41 16 The name of a class or any type should look like the following :42 The name of a class or any type should look like the following. 17 43 18 44 \code … … 22 48 \subsection cs-func Methods and other functions 23 49 24 The name of a function should look like the following :50 The name of a function should look like the following. 25 51 26 52 \code … … 30 56 \subsection cs-funcs Constants, Macros 31 57 32 The names of constants and macros should look like the following :58 The names of constants and macros should look like the following. 33 59 34 60 \code … … 38 64 \subsection cs-loc-var Class and instance member variables, auto variables 39 65 40 The names of class and instance member variables and auto variables (=variables used locally in methods) should look like the following :66 The names of class and instance member variables and auto variables (=variables used locally in methods) should look like the following. 41 67 42 68 \code … … 46 72 \subsection cs-excep Exceptions 47 73 48 When writing exceptions please comply the following naming conventions :74 When writing exceptions please comply the following naming conventions. 49 75 50 76 \code … … 52 78 \endcode 53 79 54 \warning In some cases we diverge from these rules.55 This primary done because STL uses different naming convention and56 in certain cases57 it is beneficial to provide STL compatible interface.58 59 80 */ -
doc/named-param.dox
r954 r955 3 3 \page named-param Named Parameters 4 4 5 \section named-templ-param Named Template Parameters 5 \section named-func-param Named "Function" Parameters 6 7 8 \section traits-classes Traits Classes 9 10 \section named-templ-param Named Class Template Parameters 6 11 7 12 Instead of creating a new traits class you can also use this adaptor class … … 16 21 \endcode 17 22 23 \section named-templ-func-param Named "Function" Template Parameters 24 18 25 19 26 */
Note: See TracChangeset
for help on using the changeset viewer.