#ifndef ACCOUNTMANAGER_H #define ACCOUNTMANAGER_H #include #include #include struct Account { std::string Email, Password; }; //wichtig vor Account declaration!!!! #include "parameterManager.h" class AccountManager { public: AccountManager(std::string pathToFile, std::string pathToAccountNumberFile, PAGE page, const PAGE * pagesALL); Account getNextAccount(); size_t getLastAccountNumber(); const PAGE * pagesALL; private: std::vector accounts; std::string pathToAccountNumberFile; PAGE pageInUse; int setLastAccountNumber(size_t number); int writeDefault(std::string path); }; #endif // ACCOUNTMANAGER_H