#include "AccountListList.h" #include "Account.h" #include "AccountListLink.h" AccountLink::AccountLink (Account & val) { value = val; nextLink = 0; prevLink = 0; } ostream & operator << (ostream & strOut, const AccountLink & toShow) { strOut << toShow.GetValue(); return strOut; }