Difference between revisions of "OOP344 20131 Oopers"
Peter Huang (talk | contribs) |
Peter Huang (talk | contribs) (→Coding Guidelines) |
||
Line 4: | Line 4: | ||
+++ Git Repository ID: Ooper (https://github.com/Seneca-OOP344/8-Ooper.git) +++ | +++ Git Repository ID: Ooper (https://github.com/Seneca-OOP344/8-Ooper.git) +++ | ||
== '''Coding Guidelines''' == | == '''Coding Guidelines''' == | ||
+ | |||
+ | |||
+ | |||
+ | '''1)''' Software: Visual Studio 2010. | ||
+ | |||
+ | '''2)''' Identation: 3 spaces! | ||
+ | |||
+ | '''3)''' Variable Names: | ||
+ | * Private instance var - _dataExample - starts with underscore, first word is in lowercase, first letter of second word is uppercase (rest of characters are lowercase), etc. | ||
+ | * Public functions - GetData() - first letter of each word in function name is uppercase (rest of characters are lowercase). | ||
+ | |||
+ | '''4)''' | ||
+ | |||
== '''Members''' == | == '''Members''' == | ||
Revision as of 03:26, 14 February 2013
OOP344 | Weekly Schedule | Student List | Teams | Project | Student Resources
Contents
Oopers (Team 8)
Repository
+++ Git Repository ID: Ooper (https://github.com/Seneca-OOP344/8-Ooper.git) +++
Coding Guidelines
1) Software: Visual Studio 2010.
2) Identation: 3 spaces!
3) Variable Names:
- Private instance var - _dataExample - starts with underscore, first word is in lowercase, first letter of second word is uppercase (rest of characters are lowercase), etc.
- Public functions - GetData() - first letter of each word in function name is uppercase (rest of characters are lowercase).
4)