Changes between Version 10 and Version 11 of CodingGuidelines
- Timestamp:
- Mar 29, 2012, 10:36:10 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodingGuidelines
v10 v11 38 38 } 39 39 }}} 40 41 == One class, one file == #style-singleclass 42 43 Always 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 40 45 41 46 = Coding hints = #code