Posted by Mike on July 18, 2000 at 18:52:37:
: you are required to create one class definition for
:the data corresponding to each flight ... and one
:class definition for the data structure, possibly called FlightList (encapsulating the data
:storage and the functions to manipulate the data
:structure).
I was wondering, is this "data structure" suppose to be something like we did in class today.
i.e. below:
class SomeList
{
class SomeDataClass;
SomeList* NextData;
void AddData();
void RemoveData();
void ChangeData();
}