Difference between revisions of "Team E - OOP344 20133"
(→Coding Style and Standards) |
(→Coding Style and Standards) |
||
Line 25: | Line 25: | ||
CDialog D; | CDialog D; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | * | + | * Parameter variables indicated without underline prefix: |
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
− | void method(int | + | void method(int param1, double param2, char* param3); |
</syntaxhighlight> | </syntaxhighlight> | ||
* Declare variable before using inside of loop instead of creating it inside of loop (special requirement) | * Declare variable before using inside of loop instead of creating it inside of loop (special requirement) | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
int i; | int i; | ||
− | for (i=0;i<=5;i++) { | + | for (i = 0; i <= 5; i++) { |
printf("what?"); | printf("what?"); | ||
} | } | ||
Line 38: | Line 38: | ||
Instead of | Instead of | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
− | for (int i=0;i<=5;i++) { | + | for (int i = 0; i <=5; i++) { |
printf("what?"); | printf("what?"); | ||
} | } |
Revision as of 00:02, 21 October 2013
Contents
Team Name
Project Marking Percentage
- Due right after study break
Repository
- Repo path: https://github.com/Seneca-OOP344/Team-E
Master Branch Status
Status
--- FREE --- BUSY
Logs
- October 17, 2013 @ 4:00PM by Justin, IRC: xwilkinx
- October 19, 2013 @ 7:00PM by Davson, IRC: DV_W
- October 20, 2013 @ 6:13PM by Dmitry, IRC: dimon222
- October 21, 2013 @ 12:59AM by Justin, IRC: xwilkinx
Coding Style and Standards
- No tab characters allowed.
- Indents composed of 4 spaces.
- Each object must be declared separately:
int a;
int b;
CDialog D;
- Parameter variables indicated without underline prefix:
void method(int param1, double param2, char* param3);
- Declare variable before using inside of loop instead of creating it inside of loop (special requirement)
int i;
for (i = 0; i <= 5; i++) {
printf("what?");
}
Instead of
for (int i = 0; i <=5; i++) {
printf("what?");
}
Team Members
First Name | Last Name | Section | Seneca ID | Wiki ID | IRC | Blog Page |
---|---|---|---|---|---|---|
Justin | Wilkin | B | jswilkin | Justin Sean Wilkin | xwilkinx | Justin's Blog |
Dmitry | Romanenko | A | dromanenko | Dmitry Romanenko | dimon222 | Dmitry's Blog |
Santiago | Nieto | C | sanietogarzon | Santiago Andres Nieto Garzon | sanietogarzon | Santi's Blog |
Davson | dwandja | B | dwandja | Davson Wandja | DW_V | C++ object oriented programming language |
Tasks
Release 0.2
- Complete release 0.2 tasks
- Assigned to: All members
- Completed
Release 0.3
- Complete prototyping
- CLabel assigned to Justin Sean Wilkin
- CLineEdit assigned to Santiago Andres Nieto Garzon
- CDialog assigned to Davson Wandja, Dmitry Romanenko (50%/50%)
- In Progress
Meetings
October 20, 2013 @ 6:00pm
- Location: IRC channel #oop344-teame
- Discuss project organization and console files
October 27, 2013 @ 6:00pm
- Location: IRC channel #oop344-teame
- Decide team name, Project Marking Percentage(?) and discuss solutions for R0.3