summaryrefslogtreecommitdiff
path: root/Source/Library/Userland/App/ShellApp.proto.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Library/Userland/App/ShellApp.proto.h')
-rw-r--r--Source/Library/Userland/App/ShellApp.proto.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/Source/Library/Userland/App/ShellApp.proto.h b/Source/Library/Userland/App/ShellApp.proto.h
new file mode 100644
index 0000000..846f2b1
--- /dev/null
+++ b/Source/Library/Userland/App/ShellApp.proto.h
@@ -0,0 +1,18 @@
+#ifndef DEF_SHELLAPP_CLASS_H
+#define DEF_SHELLAPP_CLASS_H
+
+#include <App/Application.proto.h>
+#include <Binding/VirtualTerminal.class.h>
+
+class ShellApp : public Application {
+ public:
+ VirtualTerminal invt, outvt;
+
+ ShellApp() : Application(), invt(VirtualTerminal::getIn()), outvt(VirtualTerminal::getOut()) {
+ if (!invt.valid()) exit(1);
+ if (!outvt.valid()) exit(2);
+ }
+};
+
+#endif
+