CMPT 212
Object-Oriented Applications Design in C++
Fall 1997
Assignment 2
Corrections and Clarifications
In section 3.6, "4" should be "5".
Don't use global variables for the two lists in your program.
They should be defined as local variables in your main
function, and passed to functions that need them. The two
lists will be instances of the plist class.
The << operator for the plist class should
print the number of people in the list.
The list manipulation functions from Assignment 1 (getFirst,
getNext, ...) should be public member functions of the
plist class. You may not need to use them in your program,
but they must be defined.
The "Copy" menu item should clear the destination list before
copying. After the copy operation, both lists should be the same.