more work on testMenu
This commit is contained in:
@@ -12,9 +12,7 @@ class App {
|
||||
|
||||
bool done;
|
||||
|
||||
std::vector<Module*> modules;
|
||||
std::vector<Module::create_t> mCreators;
|
||||
std::vector<Module::destroy_t> mDestroyers;
|
||||
std::list<Module*> modules;
|
||||
|
||||
public:
|
||||
App(const int&, char*[]);
|
||||
@@ -26,11 +24,13 @@ class App {
|
||||
|
||||
void load(std::string);
|
||||
|
||||
void unload(std::list<Module*>::iterator);
|
||||
|
||||
void handleArgs(const int&, char*[]);
|
||||
|
||||
void printHelp();
|
||||
|
||||
void end() { done = true; };
|
||||
void end() { done = true; }
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user