Delete src/Core directory

This commit is contained in:
Chris-bot374
2024-07-06 11:58:38 +02:00
committed by GitHub
parent 460dda6d21
commit 1dfb39cc1c
7 changed files with 0 additions and 631 deletions

View File

@@ -1,18 +0,0 @@
#ifndef _DBLOGIN_HPP_
#define _DBLOGIN_HPP_
#include "DBHandler.hpp"
class DBLogin : public DBHandler {
public:
DBLogin(std::string connStr);
/*
return 1 if admin | 0 if not admin | -1 if failed
*/
int checkValidLogin(int id, std::string pw);
};
#endif