#ifndef C_C_BANK_H #define C_C_BANK_H #include "BankAccount.h" class Bank { private: std::string name; std::set accounts; std::set money; public: explicit Bank(std::string name); void addAccount(BankAccount * account); void addMoney(Money * money); std::set getAccounts(); std::string getName(); }; #endif