更改文件夹名。

This commit is contained in:
unlockable
2023-06-24 17:31:16 +08:00
parent ce89b63b8e
commit 1c58758515
19 changed files with 538 additions and 538 deletions

19
FinalProject/main.cpp Normal file
View File

@@ -0,0 +1,19 @@
#include "StudentInfoManager.hpp"
#include "Tools.hpp"
int main(int argc, char *argv[]) {
#if defined _WIN64 || defined _WIN32
system("chcp 65001");
#endif
enableEchoBack(); // Just in case
StudentInfoManager *studManager;
if (argc > 1) {
studManager = new StudentInfoManager(std::string(argv[1]));
}
else {
studManager = new StudentInfoManager();
}
studManager->mainloop();
delete studManager;
return 0;
}