Update DBPlan.hpp

This commit is contained in:
Chris-bot374
2024-07-03 10:14:17 +02:00
committed by GitHub
parent c2cfc4f704
commit 6a6a2e3638

View File

@@ -17,11 +17,11 @@ public:
void deleteVeranstalter(int id);
void hinzufuegenVeranstalter(std::string email, std::string name, std::string pw, bool admin);
std::vector < std::vector<std::string>> getVeranstalter();
std::vector<std::string> getVeranstalter();
void deleteStudent(int id);
void hinzufuegenStudent(std::string email, std::string name, std::string pw);
std::vector < std::vector<std::string>> getStudenten();
std::vector<std::string> getStudenten();
};