Difference between revisions of "Team E - OOP344 20133"

From CDOT Wiki
Jump to: navigation, search
(Release 0.4)
(Logs)
Line 15: Line 15:
  
 
=== Logs ===
 
=== Logs ===
* Sun Nov 10 10:07:36 2013 - [mailto:dwandja@myseneca.ca Davson] - accurate CDialog -[https://github.com/Seneca-OOP344/Team-E/commit/6d825c26b0f5ebd58e1218229781d8f0ae2e0119]
+
* Fri Nov 22 21:19:41 2013 - [mailto:dromanenko@myseneca.ca Dmitry] - Console - Minor Fix - [https://github.com/Seneca-OOP344/Team-E/commit/64d7bd7 64d7bd7]
 +
* Fri Nov 22 20:39:32 2013 - [mailto:dromanenko@myseneca.ca Dmitry] - CButton - Fix - [https://github.com/Seneca-OOP344/Team-E/commit/4879071 4879071]
 +
* Fri Nov 22 19:14:26 2013 - [mailto:dromanenko@myseneca.ca Dmitry] - CCheckMark - Completed - [https://github.com/Seneca-OOP344/Team-E/commit/faf3c88 faf3c88]
 +
* Fri Nov 22 13:14:57 2013 - [mailto:dwandja@myseneca.ca Davson] - Create CMenuItem.cpp - [https://github.com/Seneca-OOP344/Team-E/commit/4ed5032 4ed5032]
 +
* Fri Nov 22 13:12:29 2013 - [mailto:dwandja@myseneca.ca Davson] - Create CMenuItem.h - [https://github.com/Seneca-OOP344/Team-E/commit/ad7078f ad7078f]
 +
* Thu Nov 21 23:10:29 2013 - [mailto:jswilkin@myseneca.ca Justin] - Merge branch 'master' of https://github.com/Seneca-OOP344/Team-E - [https://github.com/Seneca-OOP344/Team-E/commit/2dd170d 2dd170d]
 +
* Thu Nov 21 23:09:40 2013 - [mailto:jswilkin@myseneca.ca Justin] - CButton v2.0 - [https://github.com/Seneca-OOP344/Team-E/commit/77df158 77df158]
 +
* Thu Nov 21 21:21:58 2013 - [mailto:dromanenko@myseneca.ca Dmitry] - CCheckMark - 80% - [https://github.com/Seneca-OOP344/Team-E/commit/9d4f797 9d4f797]
 +
* Thu Nov 21 15:39:41 2013 - [mailto:dwandja@myseneca.ca Davson] - Merge branch 'master' of https://github.com/Seneca-OOP344/Team-E - [https://github.com/Seneca-OOP344/Team-E/commit/54b6d30 54b6d30]
 +
* Thu Nov 21 15:16:16 2013 - [mailto:dwandja@myseneca.ca Davson] - Updated CMenuItem - [https://github.com/Seneca-OOP344/Team-E/commit/379fe21 379fe21]
 +
* Thu Nov 21 17:44:06 2013 - [mailto:dromanenko@myseneca.ca Dmitry] - CCheckMark - Update - [https://github.com/Seneca-OOP344/Team-E/commit/6847bcf 6847bcf]
 +
* Thu Nov 21 11:23:09 2013 - [mailto:sanietogarzon@myseneca.ca Santiago] - Adding CValEdit - [https://github.com/Seneca-OOP344/Team-E/commit/0efaccf 0efaccf]
 +
* Thu Nov 21 11:18:16 2013 - [mailto:sanietogarzon@myseneca.ca Santiago] - Adding CValEdit - [https://github.com/Seneca-OOP344/Team-E/commit/43914d5 43914d5]
 +
* Thu Nov 21 00:04:44 2013 - [mailto:dromanenko@myseneca.ca Dmitry] - CCheckMark - basement - [https://github.com/Seneca-OOP344/Team-E/commit/048c994 048c994]
 +
* Wed Nov 20 19:12:01 2013 - [mailto:dwandja@myseneca.ca Davson] - Merge branch 'master' of https://github.com/Seneca-OOP344/Team-E - [https://github.com/Seneca-OOP344/Team-E/commit/17af560 17af560]
 +
* Mon Nov 18 12:53:26 2013 - [mailto:jswilkin@myseneca.ca Justin] - Added CButton files - [https://github.com/Seneca-OOP344/Team-E/commit/3e0a91c 3e0a91c]
 
* Sat Nov 9 23:26:04 2013 - [mailto:dromanenko@myseneca.ca Dmitry] - Fix for compiler warning (unnecessary part of CLineEdit constructor?) - [https://github.com/Seneca-OOP344/Team-E/commit/8b96603 8b96603]
 
* Sat Nov 9 23:26:04 2013 - [mailto:dromanenko@myseneca.ca Dmitry] - Fix for compiler warning (unnecessary part of CLineEdit constructor?) - [https://github.com/Seneca-OOP344/Team-E/commit/8b96603 8b96603]
 
* Sat Nov 9 10:49:19 2013 - [mailto:dromanenko@myseneca.ca Dmitry] - Fix for "undefined void* deletion" - [https://github.com/Seneca-OOP344/Team-E/commit/3650845 3650845]
 
* Sat Nov 9 10:49:19 2013 - [mailto:dromanenko@myseneca.ca Dmitry] - Fix for "undefined void* deletion" - [https://github.com/Seneca-OOP344/Team-E/commit/3650845 3650845]

Revision as of 22:33, 22 November 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

Release 0.4

Due Date: November 22, 2013 @ 23:59

  • CButton assigned to Justin Sean Wilkin
    • Incomplete (partial)
  • CValEdit assigned to Santiago Andres Nieto Garzon
    • Complete
  • CCheckMark assigned to Dmitry Romanenko
    • Complete
  • CMenuItem assigned to Davson Wandja
    • Incomplete
  • 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 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