Changes between Initial Version and Version 1 of InfoClassGuidelines


Ignore:
Timestamp:
Jan 15, 2010, 2:45:03 PM (15 years ago)
Author:
FrederikHeber
Comment:

Initial Guideline for class Info usage

Legend:

Unmodified
Added
Removed
Modified
  • InfoClassGuidelines

    v1 v1  
     1=== class Info usage guidelines ===
     2
     3In general, each (member) function's first line should be
     4
     5{{{
     6  Info FunctionInfo(__func__);
     7}}}
     8
     9where a class Info object is instantiated, receives the function name, and is destroyed upon exit of the function (i.e. giving debug messages of begin and end of function.
     10
     11Exceptions from the above rule:
     12   - constructors or destructors of small objects that do nothing (except for debugging purpose), i.e. !TesselPoint class.