Found at: http://publish.ez.no/article/articleprint/35/ |
Coding Standards - Part 3 - What remains |
In the third and final issue we'll dig into the details regarding naming conventions, functions, name spaces, classes, comments and exceptions.
ValueOne |
void setText( const QString &text ); |
const float PI = 3.1415; const int MAGIC_NUMBER = 42; |
enum DayType
{
Monday,
Tuesday,
...
};
private:
int Len;
int X,Y;
|
int i, index, x, y; int x_add; |
class eZDialog; class eZModuleManager; |
static int RefCount; |