summaryrefslogtreecommitdiff
path: root/src/interfacegats.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-01-09 17:08:55 -0700
committerMike Buland <eichlan@xagasoft.com>2012-01-09 17:08:55 -0700
commit18cb422d37084fed768518e89da6bb7ca5e8f040 (patch)
treeb71b1bf383eb1275261111fdb5501b5abddc2876 /src/interfacegats.h
parent5d21388a640239cadcfbf3ee2fd296db9d0eab4a (diff)
downloadstage-18cb422d37084fed768518e89da6bb7ca5e8f040.tar.gz
stage-18cb422d37084fed768518e89da6bb7ca5e8f040.tar.bz2
stage-18cb422d37084fed768518e89da6bb7ca5e8f040.tar.xz
stage-18cb422d37084fed768518e89da6bb7ca5e8f040.zip
Interface plugins are almost done.
At least, the basic console interface is almost done.
Diffstat (limited to 'src/interfacegats.h')
-rw-r--r--src/interfacegats.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/interfacegats.h b/src/interfacegats.h
new file mode 100644
index 0000000..b04abb3
--- /dev/null
+++ b/src/interfacegats.h
@@ -0,0 +1,15 @@
1#ifndef INTERFACE_GATS_H
2#define INETRFACE_GATS_H
3
4#include "interface.h"
5
6class InterfaceGats : public Interface
7{
8public:
9 InterfaceGats();
10 virtual ~InterfaceGats();
11
12 virtual void display( const class SmlNode *pSml );
13};
14
15#endif