dorking around

This commit is contained in:
Vincent Batts 2025-02-08 09:49:00 -05:00
parent 9f1aba8dd8
commit d77bfd2366
6 changed files with 423 additions and 8 deletions

37
account.h Normal file
View file

@ -0,0 +1,37 @@
/*
* =====================================================================================
* Class: Account
* Description:
* =====================================================================================
*/
class Account
{
public:
/* ==================== LIFECYCLE ======================================= */
//Account (); /* constructor */
//Account ( const Account &other ); /* copy constructor */
Account ( double initial_balance ) : balance(initial_balance) {
}
~Account () { /* destructor */
}
/* ==================== ACCESSORS ======================================= */
/* ==================== MUTATORS ======================================= */
/* ==================== OPERATORS ======================================= */
Account& operator = ( const Account &other ); /* assignment operator */
protected:
/* ==================== DATA MEMBERS ======================================= */
private:
/* ==================== DATA MEMBERS ======================================= */
double balance;
}; /* ----- end of class Account ----- */