still deciding on structure
This commit is contained in:
17
src/GuiModule.h
Normal file
17
src/GuiModule.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef GUIMODULE_H
|
||||
#define GUIMODULE_H
|
||||
|
||||
#include "Module.h"
|
||||
|
||||
class GuiModule : Module {
|
||||
|
||||
public:
|
||||
typedef GuiModule* create_t();
|
||||
typedef void destroy_t(GuiModule*);
|
||||
|
||||
virtual ~GuiModule() {}
|
||||
virtual void run() = 0;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user