1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef SHELL_WINDOWS_H
- #define SHELL_WINDOWS_H
- #include "core/os/shell.h"
- #ifdef WINDOWS_ENABLED
- class ShellWindows : public Shell {
- public:
- virtual void execute(String p_path);
- ShellWindows();
- ~ShellWindows();
- };
- #endif
- #endif
|