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