Open main menu

CDOT Wiki β

Changes

Team G - OOP344 20133

20 bytes added, 08:58, 19 October 2013
Coding Style and Standards
CDialog D;
Tab Spaces: 5;
Class Names: ---Start with upper case letter.Variable names: ---Start with lower case letter. eg: int test;Multiple word Variable names: ---Start with lower case and then following words start with upper case. eg: char empName;Function/Method names: --- Start with lower case letter. eg: display();Multiple word Function/Method names: --- Start with lower case and then following words start with upper case. eg: char getData();Verticle spacing: ---Single spaces between assignments (= +=...) double otherwiseComments: --- Comments go at end of line. End of functions and controll structures must be commented
</syntaxhighlight></big>