/////////////////////////////////////////////////////////// // Softwarebauelemente I, Aufgabe O1.3 // // author: Stephan Brumme // last changes: January 15, 2001 #include "CashOffice.h" #include using namespace std; void main() { CCashOffice myCashOffice(2,3,7); CCashOffice myCashOffice2(4,5,42); myCashOffice.Show(); myCashOffice2.Show(); // I wrote some lines twice to verify the overloaded operators cout<<"Compare cashoffices ... "<<(myCashOffice==myCashOffice2)<