Difference between revisions of "Team E - OOP344 20133"

From CDOT Wiki
Jump to: navigation, search
(Coding Style and Standards)
(Tasks)
Line 72: Line 72:
 
== Tasks ==
 
== Tasks ==
 
=== Release 0.2 ===
 
=== Release 0.2 ===
* Complete release 0.2 tasks
+
* Complete all tasks
* Assigned to: All members
+
** <span style="color:green">'''Complete'''</span>
* '''Completed'''
 
  
 
=== Release 0.3 ===
 
=== Release 0.3 ===
* Complete prototyping ('''Complete''')
+
* Complete prototyping  
 +
** <span style="color:green">'''Complete'''</span>
 +
 
 
* CLabel assigned to Justin Sean Wilkin
 
* CLabel assigned to Justin Sean Wilkin
 +
** <span style="color:red">'''Incomplete'''</span>
 +
 
* CLineEdit assigned to Santiago Andres Nieto Garzon
 
* CLineEdit assigned to Santiago Andres Nieto Garzon
 +
** <span style="color:red">'''Incomplete'''</span>
 +
 
* CDialog assigned to Davson Wandja, Dmitry Romanenko (50%/50%)
 
* CDialog assigned to Davson Wandja, Dmitry Romanenko (50%/50%)
* '''In Progress'''
+
** <span style="color:red">'''Incomplete'''</span>
  
 
== Meetings ==
 
== Meetings ==

Revision as of 15:17, 23 October 2013

Team Name

Project Marking Percentage

  • Due right after study break

Repository

Master Branch Status

--- FREE --- BUSY

Logs

  • October 17, 2013 @ 4:00PM by Justin, IRC: xwilkinx
  • October 17, 2013 @ 5:56PM by Santiago, IRC: sanietogarzon
  • October 19, 2013 @ 7:00PM by Davson, IRC: DV_W
  • October 20, 2013 @ 6:13PM by Dmitry, IRC: dimon222
  • October 21, 2013 @ 12:59AM by Justin, IRC: xwilkinx

Coding Style and Standards

  • No tab characters allowed.
  • Indents composed of 4 spaces.
  • Each object must be declared separately:
int a;
int b;
CDialog D;
  • Member variables indicated with underline prefix:
class MyClass {
    int _var1;
    double _var2;
    char* _var3;
    public:
    MyClass();
};
  • Parameter variables indicated without underline prefix:
void method(int param1, double param2, char* param3);
  • Declare variable before use inside loop (as opposed to declaration inside loop):
//Proper declaration
int i;
for (i = 0; i <= 5; i ++) {
    printf("what?");
}

//Improper declaration
for (int i = 0; i <= 5; i ++) {
    printf("what?");
}

Team Members

Team E: "TEAM NAME"

First Name Last Name Section Seneca ID Wiki ID IRC Blog Page
Justin Wilkin B jswilkin Justin Sean Wilkin xwilkinx Justin's Blog
Dmitry Romanenko A dromanenko Dmitry Romanenko dimon222 Dmitry's Blog
Santiago Nieto C sanietogarzon Santiago Andres Nieto Garzon sanietogarzon Santi's Blog
Davson dwandja B dwandja Davson Wandja DW_V C++ object oriented programming language

Tasks

Release 0.2

  • Complete all tasks
    • Complete

Release 0.3

  • Complete prototyping
    • Complete
  • CLabel assigned to Justin Sean Wilkin
    • Incomplete
  • CLineEdit assigned to Santiago Andres Nieto Garzon
    • Incomplete
  • CDialog assigned to Davson Wandja, Dmitry Romanenko (50%/50%)
    • Incomplete

Meetings

October 20, 2013 @ 6:00pm

  • Location: IRC channel #oop344-teame
  • Discuss project organization and console files

October 27, 2013 @ 6:00pm

  • Location: IRC channel #oop344-teame
  • Decide team name, Project Marking Percentage(?) and discuss solutions for R0.3