Difference between revisions of "BTP300A A2 Team 4 Bugs Report"
(→October 24nd, 2013) |
|||
Line 6: | Line 6: | ||
: David Gousvaris | : David Gousvaris | ||
: Maggie Ha | : Maggie Ha | ||
+ | |||
+ | == October 10<sup>th</sup>, 2013: == | ||
+ | Creation of work plan (Jodie) | ||
+ | - base files created from assignment template | ||
+ | |||
+ | == October 14<sup>th</sup>, 2013: == | ||
+ | - working on setting up svn (Jodie & Maggie) | ||
== October 22<sup>nd</sup>, 2013: Group Meeting == | == October 22<sup>nd</sup>, 2013: Group Meeting == | ||
Line 16: | Line 23: | ||
PART1 Coding done - ( Pedro Bellesa ) | PART1 Coding done - ( Pedro Bellesa ) | ||
PART1 Coding done - ( Maggie Ha ) | PART1 Coding done - ( Maggie Ha ) | ||
+ | PART1 Coding - partially completed - missing capture function (Jodie) | ||
+ | |||
+ | == October 23<sup>rd</sup>, 2013 == | ||
+ | - trying to compile and test constructors - unable to compile working through error messages (Jodie) | ||
+ | - issues with enum CDirection not be defined (jodie) | ||
== October 24<sup>nd</sup>, 2013 == | == October 24<sup>nd</sup>, 2013 == | ||
Line 42: | Line 54: | ||
'''cframe.h:87:19: error: âiFrameâ has not been declared''' | '''cframe.h:87:19: error: âiFrameâ has not been declared''' | ||
: | : | ||
+ | == November 1<sup>st</sup>, 2013 == | ||
+ | |||
+ | - fixed spelling mistakes and added cio namespaces - unable to compile (Jodie) | ||
+ | cframe.cpp: In member function âvoid cio::CFrame::capture()â: | ||
+ | cframe.cpp:83:3: error: âcaptureâ is not a member of âcioâ |
Revision as of 13:49, 3 November 2013
- Team Leader
- Jodie Carleton
- Team Members
- Pedro Bellesa
- Jodie Carleton
- David Gousvaris
- Maggie Ha
Contents
October 10th, 2013:
Creation of work plan (Jodie) - base files created from assignment template
October 14th, 2013:
- working on setting up svn (Jodie & Maggie)
October 22nd, 2013: Group Meeting
CFrame Class
- File "cframe.h" created.
- Constructors done.
- Half of cframe.cpp done.
PART1 Coding done - ( Pedro Bellesa )
PART1 Coding done - ( Maggie Ha )
PART1 Coding - partially completed - missing capture function (Jodie)
October 23rd, 2013
- trying to compile and test constructors - unable to compile working through error messages (Jodie) - issues with enum CDirection not be defined (jodie)
October 24nd, 2013
Found a bunch of spelling mistakes (variable names) FIXED!
cframe.h:29:4: error: invalid use of non-static data member âCFrame::positionâ cframe.h:80:25: error: from this location
- used a variable in a struct without referencing the struct. FIXED!
iframe.h:18:27: error: âCDirectionâ has not been declared
- realised we created the CDirection wrong in our cfg.h file. (Did not use enum) FIXED!
cframe.cpp: In constructor âCFrame::CFrame()â: cframe.cpp:32:31: error: invalid conversion from âconst char*â to âchar*â [-fpermissive] /usr/include/string.h:128:14: error: initializing argument 1 of âchar* strcpy(char*, const char*)â [-fpermissive]
- commented out for now... was trying to change a constant variable
cframe.h:86:19: error: âiFrameâ has not been declared
In file included from test01.cpp:8:0: cframe.h:23:30: error: expected class-name before â{â token cframe.h:87:19: error: âiFrameâ has not been declared In file included from cframe.cpp:19:0: cframe.h:23:30: error: expected class-name before â{â token cframe.h:87:19: error: âiFrameâ has not been declared
November 1st, 2013
- fixed spelling mistakes and added cio namespaces - unable to compile (Jodie) cframe.cpp: In member function âvoid cio::CFrame::capture()â: cframe.cpp:83:3: error: âcaptureâ is not a member of âcioâ