I am doing a homework assignment
for my summer OO class and we need to write two classes. One is called
Sale and the other is called Register. I've written my
Sale class; here's the .h file:
enum ItemType {BOOK, DVD, SOFTWARE, CREDIT};
class
Sale
{
public:
Sale(); // default constructor,
// sets numerical member data
…