Difference between revisions of "Team E - OOP344 20133"

From CDOT Wiki
Jump to: navigation, search
(Team Members)
(Coding Style and Standards)
Line 13: Line 13:
 
== Coding Style and Standards ==
 
== Coding Style and Standards ==
 
* No tab characters allowed.
 
* No tab characters allowed.
 +
* Indents composed of '''4''' spaces:
 +
<syntaxhighlight lang="cpp">
 +
int method(bool _condition) {
 +
    if (!_condition) {
 +
        return 0;
 +
    }
 +
    else {
 +
        cout << _condition << endl;
 +
        return _condition;
 +
    }
 +
}
 +
</syntaxhighlight>
 
* Each object must have its own type:
 
* Each object must have its own type:
<big><syntaxhighlight lang="cpp">
+
<syntaxhighlight lang="cpp">
 
int a;
 
int a;
 
int b;
 
int b;
 
CDialog D;
 
CDialog D;
</syntaxhighlight></big>
+
</syntaxhighlight>
 +
* Local/global variables:
 +
<syntaxhighlight lang="cpp">
 +
int var1 = 10;
 +
double var2 = 99.99;
 +
char* var3 = "String";
 +
</syntaxhighlight>
 +
* Parameter variables indicated by underline prefix:
 +
<syntaxhighlight lang="cpp">
 +
void method(int _param1, double _param2, char* _param3);
 +
</syntaxhighlight>
  
 
== Team Members ==
 
== Team Members ==

Revision as of 16:02, 17 October 2013

Team Name

Project Marking Percentage

  • Due right after study break

Repository

Master Branch Status

Status

--- FREE/BUSY ---

Logs

  • Date, Merged by full name, ircnick: mynick, any other info (skype or any other contact ways)

Coding Style and Standards

  • No tab characters allowed.
  • Indents composed of 4 spaces:
int method(bool _condition) {
    if (!_condition) {
        return 0;
    }
    else {
        cout << _condition << endl;
        return _condition;
    }
}
  • Each object must have its own type:
int a;
int b;
CDialog D;
  • Local/global variables:
int var1 = 10;
double var2 = 99.99;
char* var3 = "String";
  • Parameter variables indicated by underline prefix:
void method(int _param1, double _param2, char* _param3);

Team Members

Tasks

Release 0.2

  • Complete release 0.2 tasks
  • Assigned to: All members
  • Incomplete

Meetings

  • None

Team B: "[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