#ifndef ACCTNODE_H #define ACCTNODE_H #include #include "account-new.h" class AcctNode { public: AcctNode (); AcctNode (Account & value); Account GetValue() const; Account & GetValue(); //bool Delete(); AcctNode * NextNode(); AcctNode * PrevNode(); private: Account value; AcctNode * nextLink; AcctNode * prevLink; friend class AcctList; }; ostream & operator << (ostream & strOut, const AcctNode & toShow); #endif