doc/coding_style.dox
changeset 209 765619b7cbb2
parent 41 b11737922197
child 210 81cfc04531e8
     1.1 --- a/doc/coding_style.dox	Sun Jul 13 16:46:56 2008 +0100
     1.2 +++ b/doc/coding_style.dox	Sun Jul 13 19:51:02 2008 +0100
     1.3 @@ -1,6 +1,6 @@
     1.4 -/* -*- C++ -*-
     1.5 +/* -*- mode: C++; indent-tabs-mode: nil; -*-
     1.6   *
     1.7 - * This file is a part of LEMON, a generic C++ optimization library
     1.8 + * This file is a part of LEMON, a generic C++ optimization library.
     1.9   *
    1.10   * Copyright (C) 2003-2008
    1.11   * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    1.12 @@ -18,7 +18,7 @@
    1.13  
    1.14  /*!
    1.15  
    1.16 -\page coding_style LEMON Coding Style 
    1.17 +\page coding_style LEMON Coding Style
    1.18  
    1.19  \section naming_conv Naming Conventions
    1.20  
    1.21 @@ -68,7 +68,7 @@
    1.22  The name of a class or any type should look like the following.
    1.23  
    1.24  \code
    1.25 -AllWordsCapitalizedWithoutUnderscores 
    1.26 +AllWordsCapitalizedWithoutUnderscores
    1.27  \endcode
    1.28  
    1.29  \subsection cs-func Methods and other functions
    1.30 @@ -76,7 +76,7 @@
    1.31  The name of a function should look like the following.
    1.32  
    1.33  \code
    1.34 -firstWordLowerCaseRestCapitalizedWithoutUnderscores 
    1.35 +firstWordLowerCaseRestCapitalizedWithoutUnderscores
    1.36  \endcode
    1.37  
    1.38  \subsection cs-funcs Constants, Macros
    1.39 @@ -84,15 +84,15 @@
    1.40  The names of constants and macros should look like the following.
    1.41  
    1.42  \code
    1.43 -ALL_UPPER_CASE_WITH_UNDERSCORES 
    1.44 +ALL_UPPER_CASE_WITH_UNDERSCORES
    1.45  \endcode
    1.46  
    1.47 -\subsection cs-loc-var Class and instance member variables, auto variables 
    1.48 +\subsection cs-loc-var Class and instance member variables, auto variables
    1.49  
    1.50  The names of class and instance member variables and auto variables (=variables used locally in methods) should look like the following.
    1.51  
    1.52  \code
    1.53 -all_lower_case_with_underscores 
    1.54 +all_lower_case_with_underscores
    1.55  \endcode
    1.56  
    1.57  \subsection pri-loc-var Private member variables