Difference between revisions of "Team S - OOP344 20133"

From CDOT Wiki
Jump to: navigation, search
(Project Marking Percentage)
(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===
* Each object must have its own type:
+
* Do not use tab character
<big><syntaxhighlight lang="cpp">
+
* 4 spaces
int a;
+
=== Code Blocks ===
int b;
+
* all braces have their own line
CDialog D;
+
<syntaxhighlight lang="cpp">
</syntaxhighlight></big>
+
if(condition)
 +
{
 +
    doSomething();
 +
}
 +
else
 +
{
 +
    doSomethingElse();
 +
}
 +
</syntaxhighlight>
 +
=== Variable Naming ===
 +
<syntaxhighlight lang="cpp">
 +
int* pointer; // * is attached to the data type, not the variable name
 +
 
 +
</syntaxhighlight>
  
 
== Team Members ==
 
== Team Members ==

Revision as of 19:42, 17 October 2013

Team S

Project Marking Percentage

Group work: XX% (25 <= xx <= 50)
Individual work: XX% + (50 <= xx <= 75)
------------------------
Total 100%

Repository

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

  • Do not use tab character
  • 4 spaces

Code Blocks

  • all braces have their own line
if(condition)
{
    doSomething();
}
else
{
    doSomethingElse();
}

Variable Naming

int* pointer; // * is attached to the data type, not the variable name

Team Members

Team Name (team x)
First Name Last Name Section Seneca Id wiki id IRC nick Blog URL
Andrew Daniele B adaniele1 Andrew Daniele adaniele87 Andrew's Blog
Fabrizio Tomassi C ftomassi Fabrizio Tomassi fabj2 Fabrizio's Blog
Jesse Conner B jgconner Jesse Glen Conner m_i_rite Jesse's Blog
Bushra Mohamed B bomohamed Bushra Omer Mohamed BushiM Bushra's Blog

tasks

task name

  • task description
  • being done by team member name / not assigned
  • status


meetings

  • latest will be on top

topic, date

date