Difference between revisions of "Team H - OOP344 - 20132"

From CDOT Wiki
Jump to: navigation, search
(Programming Style)
(Master Status)
Line 5: Line 5:
 
=== Master Status ===
 
=== Master Status ===
 
* Master ('''last pushed/being pushed''') by ''Terry''
 
* Master ('''last pushed/being pushed''') by ''Terry''
** Styled Initial Code
+
** Added operator<< and operator>> methods; cleaned up strdsp
  
 
== Announcements ==
 
== Announcements ==

Revision as of 15:45, 13 June 2013

Modify this page to the needs of your team.
OOP344 | Weekly Schedule | Student List | Teams | Project | Student Resources

Repository

Master Status

  • Master (last pushed/being pushed) by Terry
    • Added operator<< and operator>> methods; cleaned up strdsp

Announcements

Programming Style

Indentation

  • Indents made with tabs
  • Tab size is four characters

Blocks

int main(){
    char ch = '0';
    int i;

    for(i=0; i<10; i++){
        cout << i;
    }

    switch(ch) {
    case 0:
        cout << 0;
        break;
    case 1:
        cout << 1;
        break;
    }

  return 0;
}

Classes

class Console {
private:

public:
    Console();
    ~Console();
}

Variable Naming

Lower Camel Case

curPos
setPos
row
col

Team Members

Add table rows by replacing sample table row, cell values with yours

OOP344 - Team name
First Name Last Name Section Seneca Id & email wiki id IRC nick GITHUB ID Blog URL
Drew Terrance Kerr A dtkerr Drew Terrance Kerr Praefractus TerryKerr dtkerr

Discussions