1
edit
Changes
→Changed format
== Coding Rules ==
*For indentation Indentation - '''2 spacesSpaces''' will be used, no Tabs! (Change settings in Visual Studio)
*All safeguards for header files will use the following format: '''_IC_FILENAME_H_'''
*Member variables should begin with an underscore (eg i.e. int '''_data''')
*Blocks of code will follow the structure outlined below
//code here
}
*Always use curly brackets(with conditions) even for single line codes
*Label the start and finish when there are large blocks of code
*Briefly comment each function - outlining its purpose
'''Remember the class standards'''
*Declaring each variable separately
*Correct pointer placement i.e. ('''char* str)''' not '''char *str'''
== meetings ==