summaryrefslogtreecommitdiffstats
path: root/CommandScreen.h
diff options
context:
space:
mode:
Diffstat (limited to 'CommandScreen.h')
-rw-r--r--CommandScreen.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/CommandScreen.h b/CommandScreen.h
new file mode 100644
index 00000000..a1604a3e
--- /dev/null
+++ b/CommandScreen.h
@@ -0,0 +1,16 @@
+#ifndef HEADER_CommandScreen
+#define HEADER_CommandScreen
+
+#include "InfoScreen.h"
+
+typedef struct CommandScreen_ {
+ InfoScreen super;
+} CommandScreen;
+
+extern InfoScreenClass CommandScreen_class;
+
+CommandScreen* CommandScreen_new(Process* process);
+
+void CommandScreen_delete(Object* this);
+
+#endif