1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef SHELL_H
- #define SHELL_H
- #include "core/typedefs.h"
- #include "core/ustring.h"
- class Shell {
- static Shell *singleton;
- public:
- static Shell *get_singleton();
- virtual void execute(String p_path) = 0;
- Shell();
- virtual ~Shell();
- };
- #endif
|