Difference between revisions of "OOP344 20131 - Team A"

From CDOT Wiki
Jump to: navigation, search
(Team A)
(CONTACTS)
 
(18 intermediate revisions by 4 users not shown)
Line 2: Line 2:
  
 
==CONTACTS==
 
==CONTACTS==
[mailto:fjzhou@myseneca.ca;lhmcintosh@myseneca.ca;bssnively@myseneca.ca;?subject=oop344- EMAIL TEAM]
+
[mailto:fjzhou@myseneca.ca;lhmcintosh@myseneca.ca;bssnively@myseneca.ca;dhamilton6@myseneca.ca;?subject=oop344- EMAIL TEAM]
 
{| class="wikitable sortable" border="1" cellpadding="5"
 
{| class="wikitable sortable" border="1" cellpadding="5"
 
|+ OOP344 - Winter of 2013 TEAM A MEMBERS
 
|+ OOP344 - Winter of 2013 TEAM A MEMBERS
 
! First Name !! Last Name !! Team Name !! Section !! Seneca Id !! wiki id !!  IRC nick !! GITHUB ID !! Blog URL
 
! First Name !! Last Name !! Team Name !! Section !! Seneca Id !! wiki id !!  IRC nick !! GITHUB ID !! Blog URL
  
|-
+
 
|[[User:Benjamin%20Snively|Benjamin]]||Snively||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_Team_A Team A]||B||[mailto:bssnively@myseneca.ca?subject=oop344 bssnively]||[[Special:Contributions/Benjamin Snively|Benjamin Snively]]||UltraVioletLabel||UltraVioletLabel|| [http://theartofgoto.wordpress.com/category/oop344/ The Art Of Goto]
 
 
|-
 
|-
 
|[[User:Fen Jian%20Zhou|Ken]]||Zhou||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_Team_A Team A]||B||[mailto:fjzhou@myseneca.ca?subject=oop344 fjzhou]||[[Special:Contributions/Fen Jian Zhou|Fen Jian Zhou]]||noobiedev||noobiedev|| [http://www.noobiedev.com www.noobiedev.com]
 
|[[User:Fen Jian%20Zhou|Ken]]||Zhou||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_Team_A Team A]||B||[mailto:fjzhou@myseneca.ca?subject=oop344 fjzhou]||[[Special:Contributions/Fen Jian Zhou|Fen Jian Zhou]]||noobiedev||noobiedev|| [http://www.noobiedev.com www.noobiedev.com]
 
|-
 
|-
 
|[[User:Lucas Hugh Mcintosh|Lucas]]||McIntosh||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_Team_A Team A]||B||[mailto:lhmcintosh@myseneca.ca?subject=oop344 lhmcintosh]||[[Special:Contributions/Lucas Hugh Mcintosh|Lucas Hugh Mcintosh]]||Zardvark||Zardvark|| [http://lhmcintosh.blogspot.ca/ Lucas' Chronic Misadventures in Technology]
 
|[[User:Lucas Hugh Mcintosh|Lucas]]||McIntosh||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_Team_A Team A]||B||[mailto:lhmcintosh@myseneca.ca?subject=oop344 lhmcintosh]||[[Special:Contributions/Lucas Hugh Mcintosh|Lucas Hugh Mcintosh]]||Zardvark||Zardvark|| [http://lhmcintosh.blogspot.ca/ Lucas' Chronic Misadventures in Technology]
 +
|-
 +
|[[User:Daniel%20Hamilton|Daniel]]||Hamilton||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_Team_A Team A]||B||[mailto:dhamilton6@myseneca.ca?subject=oop344 dhamilton6]||[[Special:Contributions/Daniel Hamilton|Daniel Hamilton]]||dhamilton6||dhamilton6|| [http://http://dhamilton6.wordpress.com/ Dan's Seneca Blog]
 
|}
 
|}
  
Line 18: Line 19:
  
 
*Indentation
 
*Indentation
**TAB key set 2 and space
+
**TAB is defined as two spaces.
 +
 
 +
*Header Guards
 +
**Author's initials
 +
**Two leading and trailing underscores
 +
 
 
*Blocks
 
*Blocks
**function(....) {
+
**Left parenthesis is on the declaration line
}
+
***type funct(...){
 +
 
 
*Variable Naming
 
*Variable Naming
** first word lowercase, subsequent words will have first letter capitalized
+
** Camel Case with first letter lower case.
 +
*** functions
 +
*** primitives
 +
*** namespaces
 +
*** class attributes (with leading underscore)
 +
** Camel Case with first letter upper case.
 +
*** class and struct declarations
 +
*** objects
  
  
Line 34: Line 48:
 
   case 2:
 
   case 2:
 
     doSomethingElse();
 
     doSomethingElse();
      break;
+
    break;
  
 
   default:
 
   default:
 
     doDefaultThing();
 
     doDefaultThing();
 
}
 
}
 +
 +
 +
==Merge==
 +
* 2.0 console merge - Done
 +
* 2.2 c label mock up - Done
 +
* 2.2_CLabelMock-UpClass_FixCodingFormat - Done
 +
* 2.3 c dialog mock up class - Done
 +
* 2.4 c line edit mock up class - Done
 +
* 2.5 c button mock up class - Done
 +
* 3.1 cuigh CDialog Changes - Done
 +
* 3.2 CLabel Implementation - Done
 +
 +
* 3.3 CDialog Implementation - Done
 +
 +
** 3.3.1 CDialog Bug Fixes - Done
 +
 +
* 3.4 CLineEdit Implementation - Done
 +
 +
* 3.5 CButton Implementation - Done

Latest revision as of 17:12, 11 April 2013

Team A

CONTACTS

EMAIL TEAM

OOP344 - Winter of 2013 TEAM A MEMBERS
First Name Last Name Team Name Section Seneca Id wiki id IRC nick GITHUB ID Blog URL


Ken Zhou Team A B fjzhou Fen Jian Zhou noobiedev noobiedev www.noobiedev.com
Lucas McIntosh Team A B lhmcintosh Lucas Hugh Mcintosh Zardvark Zardvark Lucas' Chronic Misadventures in Technology
Daniel Hamilton Team A B dhamilton6 Daniel Hamilton dhamilton6 dhamilton6 Dan's Seneca Blog

PROJECT STYLE

  • Indentation
    • TAB is defined as two spaces.
  • Header Guards
    • Author's initials
    • Two leading and trailing underscores
  • Blocks
    • Left parenthesis is on the declaration line
      • type funct(...){
  • Variable Naming
    • Camel Case with first letter lower case.
      • functions
      • primitives
      • namespaces
      • class attributes (with leading underscore)
    • Camel Case with first letter upper case.
      • class and struct declarations
      • objects


for instance:

switch(value) {

 case 1:
   doSomething();
 case 2:
   doSomethingElse();
   break;
 default:
   doDefaultThing();

}


Merge

  • 2.0 console merge - Done
  • 2.2 c label mock up - Done
  • 2.2_CLabelMock-UpClass_FixCodingFormat - Done
  • 2.3 c dialog mock up class - Done
  • 2.4 c line edit mock up class - Done
  • 2.5 c button mock up class - Done
  • 3.1 cuigh CDialog Changes - Done
  • 3.2 CLabel Implementation - Done
  • 3.3 CDialog Implementation - Done
    • 3.3.1 CDialog Bug Fixes - Done
  • 3.4 CLineEdit Implementation - Done
  • 3.5 CButton Implementation - Done