From f27aeb2bf9d33243841b05c8bf8c08031b352c45 Mon Sep 17 00:00:00 2001 From: hnu202326010401 <2263510185@qq.com> Date: Tue, 30 Sep 2025 15:42:27 +0800 Subject: [PATCH] ADD file via upload --- src/account.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/account.h diff --git a/src/account.h b/src/account.h new file mode 100644 index 0000000..586bfe6 --- /dev/null +++ b/src/account.h @@ -0,0 +1,15 @@ +#ifndef ACCOUNT_H +#define ACCOUNT_H + +#include"case.h" +#include + +class Authenticator{ + private: + std::vector users; + public: + User* authenticate(const std::string& username,const std::string& password); + Authenticator(); +}; + +#endif \ No newline at end of file