S_New4/src/accountManager.h
2022-03-25 21:50:29 +01:00

36 lines
662 B
C++

#ifndef ACCOUNTMANAGER_H
#define ACCOUNTMANAGER_H
#include <iostream>
#include <vector>
#include <fstream>
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);
Account getNextAccount();
size_t getLastAccountNumber();
private:
std::vector<Account> accounts;
std::string pathToAccountNumberFile;
PAGE pageInUse;
int setLastAccountNumber(size_t number);
int writeDefault(std::string path);
};
#endif // ACCOUNTMANAGER_H