Changeset 209:765619b7cbb2 in lemon-1.2 for doc/coding_style.dox
- Timestamp:
- 07/13/08 20:51:02 (16 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/coding_style.dox
r41 r209 1 /* -*- C++-*-1 /* -*- mode: C++; indent-tabs-mode: nil; -*- 2 2 * 3 * This file is a part of LEMON, a generic C++ optimization library 3 * This file is a part of LEMON, a generic C++ optimization library. 4 4 * 5 5 * Copyright (C) 2003-2008 … … 19 19 /*! 20 20 21 \page coding_style LEMON Coding Style 21 \page coding_style LEMON Coding Style 22 22 23 23 \section naming_conv Naming Conventions … … 69 69 70 70 \code 71 AllWordsCapitalizedWithoutUnderscores 71 AllWordsCapitalizedWithoutUnderscores 72 72 \endcode 73 73 … … 77 77 78 78 \code 79 firstWordLowerCaseRestCapitalizedWithoutUnderscores 79 firstWordLowerCaseRestCapitalizedWithoutUnderscores 80 80 \endcode 81 81 … … 85 85 86 86 \code 87 ALL_UPPER_CASE_WITH_UNDERSCORES 87 ALL_UPPER_CASE_WITH_UNDERSCORES 88 88 \endcode 89 89 90 \subsection cs-loc-var Class and instance member variables, auto variables 90 \subsection cs-loc-var Class and instance member variables, auto variables 91 91 92 92 The names of class and instance member variables and auto variables (=variables used locally in methods) should look like the following. 93 93 94 94 \code 95 all_lower_case_with_underscores 95 all_lower_case_with_underscores 96 96 \endcode 97 97
Note: See TracChangeset
for help on using the changeset viewer.