summaryrefslogtreecommitdiff
path: root/src/interfaceconsole.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaceconsole.h')
-rw-r--r--src/interfaceconsole.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/interfaceconsole.h b/src/interfaceconsole.h
new file mode 100644
index 0000000..74f88d0
--- /dev/null
+++ b/src/interfaceconsole.h
@@ -0,0 +1,13 @@
1#ifndef INTERFACE_CONSOLE_H
2#define INTERFACE_CONSOLE_H
3
4#include "interface.h"
5
6class InterfaceConsole : public Interface
7{
8public:
9 InterfaceConsole();
10 virtual ~InterfaceConsole();
11};
12
13#endif