aboutsummaryrefslogtreecommitdiff
path: root/OpenFileGUICommand.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-15 12:17:21 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-15 12:17:21 +0200
commita3eb81cc6b70c03fb40ac4dcd140d5f3ad241ceb (patch)
tree9d116014f1bb7ff40dab5dbd73a3cb887ef43311 /OpenFileGUICommand.h
parent28ed8918eaf62969f507fc678b4ac31f195bf257 (diff)
move file loading command + try GUI file loading (still broken)
Diffstat (limited to 'OpenFileGUICommand.h')
-rw-r--r--OpenFileGUICommand.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenFileGUICommand.h b/OpenFileGUICommand.h
new file mode 100644
index 0000000..dfaace3
--- /dev/null
+++ b/OpenFileGUICommand.h
@@ -0,0 +1,10 @@
+#pragma once
+
+#include "Command.h"
+
+class OpenFileGUICommand : public Command {
+public:
+ using Command::Command;
+ virtual void execute();
+};
+