Difference between revisions of "Team L - OOP344 20133"
Euihoon Seol (talk | contribs) (→topic, date) |
Euihoon Seol (talk | contribs) (→Coding Style and Standards) |
||
Line 20: | Line 20: | ||
== Coding Style and Standards == | == Coding Style and Standards == | ||
− | * No Tab Character allowed. (replace tabs with spaces) | + | === Indentation === |
+ | |||
+ | * No Tab Character allowed. (replace tabs with 2 spaces) | ||
+ | * 2 spaces for indentation | ||
+ | === Blocks === | ||
+ | <big><syntaxhighlight lang="cpp"> | ||
+ | if(condition) { | ||
+ | whatever; | ||
+ | } | ||
+ | </syntaxhighlight></big> | ||
+ | === Variable Naming === | ||
* Each object must have its own type: | * Each object must have its own type: | ||
<big><syntaxhighlight lang="cpp"> | <big><syntaxhighlight lang="cpp"> | ||
Line 27: | Line 37: | ||
CDialog D; | CDialog D; | ||
</syntaxhighlight></big> | </syntaxhighlight></big> | ||
+ | === Class Naming === | ||
* Use the class name for the name of the file but make sure it is all lowercase: | * Use the class name for the name of the file but make sure it is all lowercase: | ||
<big><syntaxhighlight lang="cpp"> | <big><syntaxhighlight lang="cpp"> |
Revision as of 16:26, 17 October 2013
Contents
Team Name
Team L
Project Marking Percentage
Group work: 50% (25 <= xx <= 50) Individual work: 50% (50 <= xx <= 75) ------------------------- Total 100%
Repository
- repo path: https://github.com/Seneca-OOP344/Team-L
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
Indentation
- No Tab Character allowed. (replace tabs with 2 spaces)
- 2 spaces for indentation
Blocks
if(condition) {
whatever;
}
Variable Naming
- Each object must have its own type:
int a;
int b;
CDialog D;
Class Naming
- Use the class name for the name of the file but make sure it is all lowercase:
CFrame class should have 'cframe.h' and 'cframe.cpp' files
Team Members
First Name | Last Name | Section | Seneca Id | wiki id | IRC nick | Blog URL |
---|---|---|---|---|---|---|
Justin | Chow | C | jachow1 | Justin Alan Chow | kickpuncher | Justin's Blog |
Nick | Ramkay | Section | SenecaEmailID | WikiID | IrcNick | BlogName |
Euihoon | Seol | B | eseol | Euihoon Seol | eseol | Euihoon's Blog |
Kathleen | Leong | Section | SenecaEmailID | WikiID | IrcNick | BlogName |
tasks
=== task name === * task description * being done by team member name / not assigned * status
task name
- Other team members must clone the repository and test the execution of CFrame
- Not assigned
- In progress
task name
- Branch and clone the repository, add console.cpp and console.h to the files in the repository, complie, run and test the execution
- Not assigned
- In progress
Creating teampage
- Create our teampage using the template
- being done by Euihoon (Hoon) Seol
- Done
meetings
- latest will be on top