Difference between revisions of "Team O - OOP344 20133"
(→task name) |
(→Coding Style and Standards) |
||
Line 21: | Line 21: | ||
== Coding Style and Standards == | == Coding Style and Standards == | ||
* No Tab Character allowed. (replace tabs with spaces) | * No Tab Character allowed. (replace tabs with spaces) | ||
+ | * Tab size = 4 spaces | ||
* Each object must have its own type: | * Each object must have its own type: | ||
<big><syntaxhighlight lang="cpp"> | <big><syntaxhighlight lang="cpp"> | ||
Line 26: | Line 27: | ||
int b; | int b; | ||
CDialog D; | CDialog D; | ||
+ | </syntaxhighlight></big> | ||
+ | |||
+ | *Scope brackets open under statement: | ||
+ | |||
+ | <big><syntaxhighlight lang="cpp"> | ||
+ | if(heehaw) | ||
+ | { | ||
+ | cout<<"hoohoo"<<endl; | ||
+ | } | ||
</syntaxhighlight></big> | </syntaxhighlight></big> | ||
Revision as of 12:18, 29 October 2013
Contents
Team O
Project Marking Percentage
- due right after study break
Group work: 50% Individual work: 50% + ------------------------- Total 100%
Repository
- repo path: https://github.com/Seneca-OOP344/Team-O
Master Branch Status
Status
- Open/Closed
- Open: you can merge now.
- Closed: Wait for the repo to get opened
Logs
- DateTime, Merged/being Merged by full name, ircnick: mynick, any other info
Coding Style and Standards
- No Tab Character allowed. (replace tabs with spaces)
- Tab size = 4 spaces
- Each object must have its own type:
int a;
int b;
CDialog D;
- Scope brackets open under statement:
if(heehaw)
{
cout<<"hoohoo"<<endl;
}
Team Members
First Name | Last Name | Section | Seneca ID | Wiki ID | IRC | Blog Page |
---|---|---|---|---|---|---|
Andrey | Barkov | B | abarkov | Andrey Barkov | AndreyBarkov | Andrey's Blog |
Roman | Korostelev | B | rkorostelev1 | Roman Korostelev | rkorostelev | Roman's Blog |
Ruslan | Yurash | C | [1] | Ruslan's Blog | ||
Oleg | Bilyi | С | obilyi | Oleg Bilyi | oleg06011995 | Oleg's Blog |
tasks
Prototyping
- Roman Korostelev
- being done by team member name / not assigned
- status: In progress
CLabel
- Complete CLabel class
- being done by Roman Korostelev
- status: In progress
CDialog
- Complete CDialog class
- being done by Andrey Barkov, Ruslan Yurash
- status: In progress
CLineEdit
- Complete CLineEdit class
- being done by Oleg Bilyi
- status: In progress
meetings
- latest will be on top