ADD file via upload

develop
hnu202326010401 4 months ago
parent f8d0445244
commit f27aeb2bf9

@ -0,0 +1,15 @@
#ifndef ACCOUNT_H
#define ACCOUNT_H
#include"case.h"
#include<vector>
class Authenticator{
private:
std::vector<User> users;
public:
User* authenticate(const std::string& username,const std::string& password);
Authenticator();
};
#endif
Loading…
Cancel
Save