Changes

Jump to: navigation, search

Team H - OOP344 20133

155 bytes added, 16:46, 18 October 2013
Coding Style and Standards
CDialog D;
</syntaxhighlight></big>
** With regards to space charactersand opening and closing brackets , standard will be as followsfollow:
<big><syntaxhighlight lang="cpp">
if(a == b) {//There should be a space between each meaningful variable and operator and so on
x = y * z; // 2 spaces for indentation
}
public:
int _a; // member variables should start with an underscore
int _arraySize ; // use meaningful names for variables when applicable and use camel notation
char* _pArray; // pointers should have '*' part of the type
};
* For the safeguard for header files, we will use the following:
<big><syntaxhighlight lang="cpp">
H_FILENAME_H_
</syntaxhighlight></big>
 
 
== Team Members ==

Navigation menu