Difference between revisions of "Team E - OOP344 20133"

From CDOT Wiki
Jump to: navigation, search
(Meetings)
(Issues)
Line 163: Line 163:
 
* [https://github.com/Seneca-OOP344/Team-E/issues/4 Tester 3 - Segmentation Fault inside CLineEdit]
 
* [https://github.com/Seneca-OOP344/Team-E/issues/4 Tester 3 - Segmentation Fault inside CLineEdit]
 
** Problem in console.cpp (Linux)
 
** Problem in console.cpp (Linux)
** '''Status''': <span style="color:green">'''Resolved'''</span>
+
** '''Status''': <span style="color:red">'''Unresolved'''</span>
 +
 
 
=== [[The_Application_-_OOP344_20133 | Application]] ===
 
=== [[The_Application_-_OOP344_20133 | Application]] ===
 
<big>Due Date: '''TBA'''</big>
 
<big>Due Date: '''TBA'''</big>

Revision as of 02:12, 14 December 2013

Team E

Project Marking Percentage

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

Repository

Master Branch Status

--- FREE --- BUSY

Logs

Coding Style and Standards

  • No tab characters allowed.
  • Indents composed of 4 spaces.
  • Include guards composed of "TEAME" followed by file name and type:
//For header file "Example.h"
#ifndef TEAME_EXAMPLE_H
#define TEAME_EXAMPLE_H
  • Each object must be declared separately:
//Proper declaration
int a;
int b;
CDialog D;

//Improper declaration
int a, 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);
  • Use braces for all applicable statements (even single line statements):
//Proper use
if (value == 0) {
    return true;
}

//Improper use
if (value == 0)
    return true;

//Improper use
if (value == 0) return true;
  • Declare counter variables before use inside loops:
//Proper declaration
int i;
for (i = 0; i <= 5; i ++) {
    cout << "i = " << i << endl;
}

//Improper declaration
for (int i = 0; i <= 5; i ++) {
    cout << "i = " << i << endl;
}

Team Members

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

Issues

Application

Due Date: TBA

  • Build application
    • Incomplete

Release 0.4

Due Date: November 22, 2013 @ 23:59

  • CButton assigned to Justin Sean Wilkin
    • Complete
  • CValEdit assigned to Santiago Andres Nieto Garzon
    • Complete
  • CCheckMark assigned to Dmitry Romanenko
    • Complete
  • CMenuItem assigned to Davson Wandja
    • Complete
  • Implementation test
    • Incomplete

Release 0.3

Due Date: November 4, 2013 @ 23:59

  • Prototyping assigned to Justin Sean Wilkin
    • Complete
  • CLabel assigned to Justin Sean Wilkin
    • Complete
  • CLineEdit assigned to Santiago Andres Nieto Garzon
    • Complete
  • CDialog assigned to Davson Wandja, Dmitry Romanenko
    • Complete
  • Implementation test
    • Complete

Release 0.2

  • Finish all tasks
    • Complete

Meetings

November 13, 2013 @ 5:00pm

  • Location: IRC channel #oop344-teame
  • R1.0 discussion - cancelled

November 21, 2013 @ 6:00pm

  • Location: IRC channel #oop344-teame
  • CValEdit discussion

November 4, 2013 @ 6:00pm

  • Location: IRC channel #oop344-teame
  • Fix any remaining Release 0.3 bugs

November 4, 2013 @ 3:25pm

  • Location: T4040
  • Final fix before submission

November 3, 2013 @ 6:00pm

  • Location: IRC channel #oop344-teame
  • Discuss progress of Release 0.3

October 27, 2013 @ 6:00pm

  • Location: IRC channel #oop344-teame
  • Decide team name, Project Marking Percentage, and discuss solutions for Release 0.3

October 20, 2013 @ 6:00pm

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