Open main menu

CDOT Wiki β

OOP344 Assignment Two

Revision as of 13:50, 12 October 2009 by Fardad (talk | contribs) (Created page with 'OOP344 - OOP344 Student List - OOP344 Teams - OOP344 Assignment One<br /> Under construction... As the first part of your project this semester, you are to creat...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

OOP344 - OOP344 Student List - OOP344 Teams - OOP344 Assignment One
Under construction...

As the first part of your project this semester, you are to create few classes to encapsulate OOP344 Assignment One

IO Classes

File Names

Save your work in separate files for each class. Name the files to the same name as the classes. Each class should have a header file and a code file.

For example for the class IOField, create iofield.h and iofield.cpp. The header file should hold the class declaration and any other possible declaration related to the class. the "cpp" file should hold the definition (implementation) of the class and its methods and possible functions.

Create a Make file to build your project with respect to dependencies of classes.

How to reuse your C code in C++ programs