Difference between revisions of "OOP344 20131 - Team A"
Line 64: | Line 64: | ||
* 2.5 c button mock up class - Done | * 2.5 c button mock up class - Done | ||
* 3.1 cuigh CDialog Changes - Done | * 3.1 cuigh CDialog Changes - Done | ||
+ | * 3.2 CLabel Implementation - Done | ||
+ | |||
+ | * 3.3 CDialog Implementation - Done | ||
+ | |||
+ | * * 3.3.1 CDialog Bug Fixes - Done | ||
+ | |||
+ | * 3.4 CLineEdit Implementation - Done | ||
+ | |||
+ | * 3.5 CButton Implementation - Done |
Revision as of 23:15, 6 March 2013
Contents
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.
- Header Guards
- Author's initials
- Two leading and trailing underscores
- 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();
}
Merge
- 2.0 console merge - Done
- 2.2 c label mock up - Done
- 2.2_CLabelMock-UpClass_FixCodingFormat - Done
- 2.3 c dialog mock up class - Done
- 2.4 c line edit mock up class - Done
- 2.5 c button mock up class - Done
- 3.1 cuigh CDialog Changes - Done
- 3.2 CLabel Implementation - Done
- 3.3 CDialog Implementation - Done
- * 3.3.1 CDialog Bug Fixes - Done
- 3.4 CLineEdit Implementation - Done
- 3.5 CButton Implementation - Done