#ifndef ACCOUNT_H #define ACCOUNT_H #include #include #include class Account { public: ~Account(); wxString _id; wxString _name; wxString _number; int _amount; bool _shared; bool _default; }; #endif