update testMenu

This commit is contained in:
2025-03-15 16:17:34 -05:00
parent 00563c74a7
commit 65005bd0b6
3 changed files with 14 additions and 16 deletions

View File

@@ -14,6 +14,13 @@ class App {
std::list<Module*> modules;
std::list<Module*> toClose;
void load(std::string);
void unload(std::list<Module*>::iterator);
void handleArgs(const int&, char*[]);
void printHelp();
public:
App(const int&, char*[]);
@@ -23,15 +30,7 @@ class App {
void run();
void load(std::string);
void unload(decltype(Module::self));
void stopModule(decltype(Module::self));
void handleArgs(const int&, char*[]);
void printHelp();
void stopModule(std::list<Module*>::iterator);
void end() { done = true; }
};