#ifndef CHECKING_ACCOUNT_H #define CHECKING_ACCOUNT_H class CCheckingAccount { friend void TakeTheMoneyAndRun(CCheckingAccount & CheckingAccount); public: CCheckingAccount(); void Deposit(const double Funds); //void Withdraw(); //... private: double m_Balance; }; #endif