// Money.h is the header file for class MoneyType with // constructors. #include using namespace std; class MoneyType { public: void Initialize(long, long); long DollarsAre() const; long CentsAre() const; void Print() const; MoneyType Add(MoneyType) const; MoneyType(); // constructor MoneyType(long, long); // constructor private: long dollars; long cents; };