#ifndef ACCOUNT_H #define ACCOUNT_H #include #include struct operation { unsigned int day; unsigned int month; unsigned int year; unsigned int amount; std::string description; std::string category; bool fix_cost; } ; class Account { private: std::string _name; std::string _number; std::map > > _operations; bool _shared; bool _default; }; #endif