Difference between revisions of "OOP344 20131 - Team A"
(Cleaned up Style - Benjamin) |
(→CONTACTS) |
||
Line 14: | Line 14: | ||
|[[User:Lucas Hugh Mcintosh|Lucas]]||McIntosh||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_Team_A Team A]||B||[mailto:lhmcintosh@myseneca.ca?subject=oop344 lhmcintosh]||[[Special:Contributions/Lucas Hugh Mcintosh|Lucas Hugh Mcintosh]]||Zardvark||Zardvark|| [http://lhmcintosh.blogspot.ca/ Lucas' Chronic Misadventures in Technology] | |[[User:Lucas Hugh Mcintosh|Lucas]]||McIntosh||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_Team_A Team A]||B||[mailto:lhmcintosh@myseneca.ca?subject=oop344 lhmcintosh]||[[Special:Contributions/Lucas Hugh Mcintosh|Lucas Hugh Mcintosh]]||Zardvark||Zardvark|| [http://lhmcintosh.blogspot.ca/ Lucas' Chronic Misadventures in Technology] | ||
|- | |- | ||
− | |[[User:Daniel%20Hamilton|Daniel]]||Hamilton||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_Team_A Team A]||B||[mailto:dhamilton6@myseneca.ca?subject=oop344 dhamilton6]|| || |||| | + | |[[User:Daniel%20Hamilton|Daniel]]||Hamilton||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_Team_A Team A]||B||[mailto:dhamilton6@myseneca.ca?subject=oop344 dhamilton6]||[[Special:Contributions/Daniel Hamilton|Daniel Hamilton]]||dhamilton6||dhamilton6|| [http://http://dhamilton6.wordpress.com/ Dan's Seneca Blog] |
|} | |} | ||
Revision as of 18:58, 12 February 2013
Team A
CONTACTS
First Name | Last Name | Team Name | Section | Seneca Id | wiki id | IRC nick | GITHUB ID | Blog URL |
---|---|---|---|---|---|---|---|---|
Benjamin | Snively | Team A | B | bssnively | Benjamin Snively | UltraVioletLabel | UltraVioletLabel | The Art Of Goto |
Ken | Zhou | Team A | B | fjzhou | Fen Jian Zhou | noobiedev | noobiedev | www.noobiedev.com |
Lucas | McIntosh | Team A | B | lhmcintosh | Lucas Hugh Mcintosh | Zardvark | Zardvark | Lucas' Chronic Misadventures in Technology |
Daniel | Hamilton | Team A | B | dhamilton6 | Daniel Hamilton | dhamilton6 | dhamilton6 | Dan's Seneca Blog |
PROJECT STYLE
- Indentation
- TAB is defined as two spaces.
- Blocks
- Left parenthesis is on the declaration line
- type funct(...){
- Left parenthesis is on the declaration line
- Variable Naming
- Camel Case with first letter lower case.
- functions
- primitives
- namespaces
- class attributes (with leading underscore)
- Camel Case with first letter upper case.
- class and struct declarations
- objects
- Camel Case with first letter lower case.
for instance:
switch(value) {
case 1: doSomething();
case 2: doSomethingElse(); break;
default: doDefaultThing();
}