Difference between revisions of "Team S - OOP344 20133"

From CDOT Wiki
Jump to: navigation, search
(Team S)
(Team S)
Line 1: Line 1:
 
= Team S=
 
= Team S=
== Project Marking Percentage ==
 
 
<big><syntaxhighlight lang="cpp">
 
Group work: 50
 
Individual work: 50
 
------------------------
 
Total 100%
 
</syntaxhighlight></big>
 
 
 
== Repository ==
 
== Repository ==
 
* repo path: https://github.com/Seneca-OOP344/Team-S
 
* repo path: https://github.com/Seneca-OOP344/Team-S
Line 16: Line 7:
 
*: Open: you can merge now.
 
*: Open: you can merge now.
 
*: Closed: Wait for the repo to get opened
 
*: Closed: Wait for the repo to get opened
 
 
====Logs====
 
====Logs====
 
* DateTime, Merged/being Merged by [mailto:emailid@learn.senecac.on.ca full name], ircnick: mynick, any other info
 
* DateTime, Merged/being Merged by [mailto:emailid@learn.senecac.on.ca full name], ircnick: mynick, any other info
 
 
== Coding Style and Standards ==
 
== Coding Style and Standards ==
 
=== Indentation===
 
=== Indentation===
Line 28: Line 17:
 
* comment beside function declaration (very brief description)
 
* comment beside function declaration (very brief description)
 
* comment complex code
 
* comment complex code
 
 
=== Variable Naming ===
 
=== Variable Naming ===
 
* camel case with first letter lowercase in both variables and methods: int numCounter;
 
* camel case with first letter lowercase in both variables and methods: int numCounter;
Line 34: Line 22:
 
* extern prefix: extern int _externInt;
 
* extern prefix: extern int _externInt;
 
* static prefix: static int s_staticInt;
 
* static prefix: static int s_staticInt;
 
 
=== Code Blocks ===
 
=== Code Blocks ===
 
* all braces have their own line
 
* all braces have their own line
Line 47: Line 34:
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>
 
 
== Team Members ==
 
== Team Members ==
 
{| class="wikitable sortable" border="1" cellpadding="5"
 
{| class="wikitable sortable" border="1" cellpadding="5"
Line 61: Line 47:
 
|[[User:Bushra Omer Mohamed | Bushra]]|| Mohamed || B || [mailto:bomohamed@myseneca.ca?subject=oop344 bomohamed] || [[Special:Contributions/Bushra Omer Mohamed | Bushra Omer Mohamed]] || BushiM || [http://bushramohamed.wordpress.com/ Bushra's Blog]
 
|[[User:Bushra Omer Mohamed | Bushra]]|| Mohamed || B || [mailto:bomohamed@myseneca.ca?subject=oop344 bomohamed] || [[Special:Contributions/Bushra Omer Mohamed | Bushra Omer Mohamed]] || BushiM || [http://bushramohamed.wordpress.com/ Bushra's Blog]
 
|}
 
|}
 
+
== Tasks ==
== Current Tasks ==
 
 
{| class="wikitable" border="1" cellpadding="5"
 
{| class="wikitable" border="1" cellpadding="5"
 
|-
 
|-
Line 73: Line 58:
 
| Branch Master || In Progress|| Bushra Omer Mohamed || Branch from master, add comment to cframe.h, merge to master || Sat Oct 19, 2013
 
| Branch Master || In Progress|| Bushra Omer Mohamed || Branch from master, add comment to cframe.h, merge to master || Sat Oct 19, 2013
 
|}
 
|}
 
+
== History ==
== Task History ==
 
 
{| class="wikitable collapsible collapsed" border="1" cellpadding="5"
 
{| class="wikitable collapsible collapsed" border="1" cellpadding="5"
 
|-
 
|-
Line 83: Line 67:
 
| Branch Master || Fabrizio Tomassi || Branch from master, add comment to cframe.h, merge to master || Wed Oct 16, 2013
 
| Branch Master || Fabrizio Tomassi || Branch from master, add comment to cframe.h, merge to master || Wed Oct 16, 2013
 
|}
 
|}
 
 
== meetings ==
 
== meetings ==
 
* latest will be on top
 
* latest will be on top
 
=== topic, date ===
 
=== topic, date ===
 
[[Irc logs of meeting (unique name) - oop344 20113 | date]]
 
[[Irc logs of meeting (unique name) - oop344 20113 | date]]
 +
== Project Marking Percentage ==
 +
<big><syntaxhighlight lang="cpp">
 +
Group work: 50
 +
Individual work: 50
 +
------------------------
 +
Total 100%
 +
</syntaxhighlight></big>

Revision as of 22:06, 17 October 2013

Team S

Repository

Master Branch Status

Status

  • Open
    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

Comments

  • comment above function definition (summarize function)
  • comment beside function declaration (very brief description)
  • comment complex code

Variable Naming

  • camel case with first letter lowercase in both variables and methods: int numCounter;
  • asterisk of a pointer will be attached to the type, not the variable name: int* pointer;
  • extern prefix: extern int _externInt;
  • static prefix: static int s_staticInt;

Code Blocks

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

Team Members

Team Name (Team S)
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 Status Member(s) Description Due
Team Page In Progress All Build Team Page Sat Oct 19, 2013
Branch Master In Progress Jesse Glen Conner Branch from master, add comment to cframe.h, merge to master Sat Oct 19, 2013
Branch Master In Progress Bushra Omer Mohamed Branch from master, add comment to cframe.h, merge to master Sat Oct 19, 2013

History

meetings

  • latest will be on top

topic, date

date

Project Marking Percentage

Group work: 50
Individual work: 50
------------------------
Total 100%