Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 9 and Version 10 of code/C++_styleguide


Ignore:
Timestamp:
Nov 5, 2007, 3:52:08 PM (16 years ago)
Author:
rgrieder
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/C++_styleguide

    v9 v10  
    1818
    1919=== Namespaces ===
    20 Create a directory for every namespace (== create a directory for every modules and all its submodules).
     20Create a directory for every namespace (== create a directory for every modules and all its submodules). Names representing namespaces should be all lowercase.[[br]]
     21Don't write "using namespace ..;" in header files because otherwise if someone included that header file, the "using namespace .." would automatically be included as well. That may lead to unwanted errors.
    2122
    2223=== Inlineing and Templates ===