Difference between revisions of "Team O - OOP344 20133"

From CDOT Wiki
Jump to: navigation, search
(Team Members)
 
(14 intermediate revisions by 2 users not shown)
Line 21: Line 21:
 
== Coding Style and Standards ==
 
== Coding Style and Standards ==
 
* No Tab Character allowed. (replace tabs with spaces)
 
* No Tab Character allowed. (replace tabs with spaces)
 +
* Tab size = 4 spaces
 
* Each object must have its own type:
 
* Each object must have its own type:
 
<big><syntaxhighlight lang="cpp">
 
<big><syntaxhighlight lang="cpp">
Line 26: Line 27:
 
int b;
 
int b;
 
CDialog D;
 
CDialog D;
 +
</syntaxhighlight></big>
 +
 +
*Scope brackets open under statement:
 +
 +
<big><syntaxhighlight lang="cpp">
 +
if(heehaw)
 +
  {
 +
    cout<<"hoohoo"<<endl;
 +
  }
 
</syntaxhighlight></big>
 
</syntaxhighlight></big>
  
Line 39: Line 49:
  
 
|-
 
|-
|[[User:Ruslan Yurash|Ruslan]]||Yurash|||C||[mailto:ryurash@myseneca.ca?subject=oop344 ]||[[Special:Contributions/| ]]|| || [http://wordpress.com Ruslan's Blog]
+
|[[User:Ruslan Yurash|Ruslan]]||Yurash|||C||[mailto:ryurash@myseneca.ca?subject=oop344 ]||[[Special:Contributions/Ruslan Yurash| ]]||rulya || [http://wordpress.com Ruslan's Blog]
  
 
|-
 
|-
Line 45: Line 55:
 
|}
 
|}
  
== tasks ==
+
== Tasks ==
=== task name ===
+
<u>Release 0.1</u>
* task description
+
=== Prototyping ===
* being done by team member name / not assigned
+
* being done by Andrey Barkov
* status
+
* status: Done
 +
 
 +
=== CLabel ===
 +
* Complete CLabel class
 +
* being done by Roman Korostelev
 +
* status: Done
 +
 
 +
=== CDialog ===
 +
* Complete CDialog class
 +
* being done by Andrey Barkov, Ruslan Yurash
 +
* status: Done
 +
 
 +
=== CLineEdit ===
 +
* Complete CLineEdit class
 +
* being done by Oleg Bilyi
 +
* status: Done
 +
 
 +
<u>Release 0.2</u>
 +
 
 +
=== CButton ===
 +
* Complete CButton class
 +
* being done by Roman Korostelev
 +
* status: Done
 +
 
 +
=== CValEdit ===
 +
* Complete CValEdit class
 +
* being done by Oleg Bilyi
 +
* status: Done
 +
 
 +
=== CMenuItem ===
 +
* Complete CMenuItem class
 +
* being done by Andrew Barkov
 +
* status: Done
 +
 
 +
=== CCheckMark ===
 +
* Complete CCheckMark class
 +
* being done by Ruslan Yurash
 +
* status: Done
 +
 
 +
<u>The Application</u>
 +
=== Prototyping ===
 +
* being done by Ruslan Yurash
 +
* status: Done
 +
 
 +
=== Filewalker ===
 +
* Complete FileWalker class
 +
* being done by Roman Korostelev, Andrey Barkov, Oleg Bilyi
 +
* status: Done
 +
 
 +
=== BookRecord ===
 +
* Complete BookRecord class
 +
* being done by Oleg Bilyi
 +
* status: Done
 +
 
 +
=== Interface ===
 +
* Complete the AppMain.cpp
 +
* being done by Ruslan Yurash
 +
* status: Done
 +
 
 +
 
 +
== Meetings ==
 +
 
 +
<u>Fixed RecordDelete, December 13</u> <br/>
 +
Worked on RecordDelete method, almost fixed it.
 +
 
 +
<u>Filewalker bugs, December 12</u> <br/>
 +
Worked on couple of bugs in the filewalker class.
 +
 
 +
<u>Filewalker Functionality, December 06</u> <br/>
 +
Worked on the methods in the Filewalker Class.
  
 +
<u>Assigning Tasks, Skype Meeting, November 29</u> <br/>
 +
Each member of the team had task assigned. Ruslan - main interface, Oleg - BookRecord, Roman and Andrey - Filewalker.
  
== meetings ==
 
* latest will be on top
 
=== topic, date ===
 
 
[[Irc logs of meeting (unique name) - oop344 20113 | date]]
 
[[Irc logs of meeting (unique name) - oop344 20113 | date]]

Latest revision as of 14:05, 15 December 2013

Team O

Project Marking Percentage

  • due right after study break

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

Repository

Master Branch Status

Status

  • Open/Closed
    Open: you can merge now.
    Closed: Wait for the repo to get opened

Logs

  • DateTime, Merged/being Merged by full name, ircnick: mynick, any other info

Coding Style and Standards

  • No Tab Character allowed. (replace tabs with spaces)
  • Tab size = 4 spaces
  • Each object must have its own type:
int a;
int b;
CDialog D;
  • Scope brackets open under statement:
 if(heehaw)
  {
    cout<<"hoohoo"<<endl;
  }

Team Members

First Name Last Name Section Seneca ID Wiki ID IRC Blog Page
Andrey Barkov B abarkov Andrey Barkov AndreyBarkov Andrey's Blog
Roman Korostelev B rkorostelev1 Roman Korostelev rkorostelev Roman's Blog
Ruslan Yurash C [1] rulya Ruslan's Blog
Oleg Bilyi С obilyi Oleg Bilyi oleg06011995 Oleg's Blog

Tasks

Release 0.1

Prototyping

  • being done by Andrey Barkov
  • status: Done

CLabel

  • Complete CLabel class
  • being done by Roman Korostelev
  • status: Done

CDialog

  • Complete CDialog class
  • being done by Andrey Barkov, Ruslan Yurash
  • status: Done

CLineEdit

  • Complete CLineEdit class
  • being done by Oleg Bilyi
  • status: Done

Release 0.2

CButton

  • Complete CButton class
  • being done by Roman Korostelev
  • status: Done

CValEdit

  • Complete CValEdit class
  • being done by Oleg Bilyi
  • status: Done

CMenuItem

  • Complete CMenuItem class
  • being done by Andrew Barkov
  • status: Done

CCheckMark

  • Complete CCheckMark class
  • being done by Ruslan Yurash
  • status: Done

The Application

Prototyping

  • being done by Ruslan Yurash
  • status: Done

Filewalker

  • Complete FileWalker class
  • being done by Roman Korostelev, Andrey Barkov, Oleg Bilyi
  • status: Done

BookRecord

  • Complete BookRecord class
  • being done by Oleg Bilyi
  • status: Done

Interface

  • Complete the AppMain.cpp
  • being done by Ruslan Yurash
  • status: Done


Meetings

Fixed RecordDelete, December 13
Worked on RecordDelete method, almost fixed it.

Filewalker bugs, December 12
Worked on couple of bugs in the filewalker class.

Filewalker Functionality, December 06
Worked on the methods in the Filewalker Class.

Assigning Tasks, Skype Meeting, November 29
Each member of the team had task assigned. Ruslan - main interface, Oleg - BookRecord, Roman and Andrey - Filewalker.

date