Difference between revisions of "Team J - OOP344 20133"
Thana Annis (talk | contribs) (→Project Marking Percentage) |
(→Release 0.3) |
||
Line 115: | Line 115: | ||
* Group member: Thana Annis | * Group member: Thana Annis | ||
* ''status:'' '''complete''' | * ''status:'' '''complete''' | ||
+ | * Reviewing: CDialog (''not started'') | ||
<u>'''CDialog'''</u> | <u>'''CDialog'''</u> | ||
Line 125: | Line 126: | ||
* Group member: Len Isac | * Group member: Len Isac | ||
* ''status:'' '''in progress''' | * ''status:'' '''in progress''' | ||
+ | * Reviewing: CLineEdit (''not started'') | ||
<u>'''CLineEdit'''</u> | <u>'''CLineEdit'''</u> | ||
Line 130: | Line 132: | ||
* Group member: Sehui Park | * Group member: Sehui Park | ||
* ''status:'' '''in progress''' | * ''status:'' '''in progress''' | ||
+ | * Reviewing: CLabel (''not started'') | ||
== '''Meetings''' == | == '''Meetings''' == | ||
* [[First meeting IRC - oop344 20113 | October 18th, 2013]] | * [[First meeting IRC - oop344 20113 | October 18th, 2013]] |
Revision as of 20:16, 24 October 2013
OOP344 | Weekly Schedule | Student List | Teams | Project | Student Resources
Contents
Team Name
Project Marking Percentage
- due right after study break
Group work: 50% (25 <= xx <= 50) Individual work: 50% + (50 <= xx <= 75)
Total 100%
Repository
Master Branch Status
Status
- Open
Logs
- DateTime, Merged/being Merged by full name, ircnick: mynick, any other info
Coding Style and Standards
- No Tab Character allowed. (replace tabs with 4 spaces)
- Each object must have its own type:
int a;
int b;
CDialog D;
- Curly Braces: The opening curly brace should be placed on it's own line underneath the class declaration, function name, etc.
foo()
{
//Code
}
- Variable Naming: The first word in a variable name is in lower case and uppercase letters mark the beginning of a new word. Use an underscore before the variable name to identify it as a private member of a class.
varName;
class foo
{
private:
_varName;
}
- Commenting: A comment should be made at the top of each file listing the name of the file, the last person to edit it, the date and time it was last modified and the current status of the file.
/*
filename.cpp
Your Name
Last Modified: October, 24th, 2013
status: incomplete
*/.
Team Members
First Name | Last Name | Section | Seneca Id | wiki id | IRC nick | Blog URL |
---|---|---|---|---|---|---|
Thana | Annis | C | tannis | Thana Annis | Bwaffles | OOP344 |
Len | Isac | B | lkisac | Leonard Kei Isac | lkisac | WordPress |
Fadi | Tawfig | B | fatawfig | Fadi Atif Tawfig | Frodi | Fadi's Programming Blog |
Sehui | Park | B | spark86 | Sehui Park | spark86 | Mikesayhi
|
Tasks
Release 0.2
- Create Team Page ( status: complete)
- Create mockup classes for CIO Framework ( status: complete)
- Choose one team member's console ( status: complete)
- Add member info to CFrame header file ( status: complete)
- Each team member to compile and run Test1Frame successfully ( status: complete)
Release 0.3
Prototyping
- Task description: create mockup classes.
- Group member: Thana Annis
- status: complete
- Reviewing: CDialog (not started)
CDialog
- Task description: (fill in)
- Group member: Fadi Tawfig
- status: in progress
CLabel
- Task description: create the constructors, destructors and methods for CLabel.
- Group member: Len Isac
- status: in progress
- Reviewing: CLineEdit (not started)
CLineEdit
- Task description: (fill in)
- Group member: Sehui Park
- status: in progress
- Reviewing: CLabel (not started)