0.44.0
|
Use lower camel case for variables.
Examples:
All member variables and static definitions begin with the prefix "_"
Examples:
Yes this might be a bad idea but the autor realized that years of work too late. It seemed cool back in the day. :-D (Today m_ would be the preffered prefix for member variables and s_ for static ones. Maybe one day I will replace all of that... probably not.)
All functions and methods are written in lower camel case. The first word is preferably a verb.
Examples:
If a function or method is a callback to an event it has to start whit the prefix 'on'.
Examples:
All names of classes, structs and enums start with the prefixes according to the name space they are part off. For the Igor name space this is "i" and for the IgorAux name space this is "ia". After the prefix every first letter of every word must be upper case every other letter can be upper case.
Examples:
Use {} brackets and indentation in a way to make clear where nesting starts and ends by aligning the opening and closing brackets with each other.
Eamples:
if(foo == bar) { x = 1; } for(int i=0;i<10;++i) { if(i==bar) { x = 0; } }
All symbols must be documented with doxygen style comments. No mater if internal or external interfaces. No mater if public or private members and methods.
Example:
/*! This class is the greatest. */ class Bla { private: /*! private member index */ int _index; /*! does nothing */ void fooBar(); public: /*! does nothing \param word bird is the \returns always zero */ int fooBar(const string& word); /*! does some magic */ Bla(); /*! cleans up */ ~Bla(); }