Changes between Version 10 and Version 11 of CodingGuidelines


Ignore:
Timestamp:
Mar 29, 2012, 10:36:10 AM (13 years ago)
Author:
FrederikHeber
Comment:

Added section on one class, one file

Legend:

Unmodified
Added
Removed
Modified
  • CodingGuidelines

    v10 v11  
    3838}
    3939}}}
     40
     41== One class, one file == #style-singleclass
     42
     43Always have just __one class implementation per file__!. This allows for compiling the implementations in parallel and it is natural to split up the implementation with respect to the class structure. The same holds for the declaration in the header file.
     44
    4045
    4146= Coding hints = #code