Team H - OOP344 - 20132

From CDOT Wiki
Revision as of 16:45, 14 June 2013 by Chisa Takata (talk | contribs) (Team Members)
Jump to: navigation, search

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
Chisa Takata A ctakata Chisa Takata chisat chisat chisat

Discussions