summaryrefslogtreecommitdiff
path: root/src/interfacegats.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfacegats.h')
-rw-r--r--src/interfacegats.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/interfacegats.h b/src/interfacegats.h
index ff1f760..473d71c 100644
--- a/src/interfacegats.h
+++ b/src/interfacegats.h
@@ -2,6 +2,8 @@
2#define INETRFACE_GATS_H 2#define INETRFACE_GATS_H
3 3
4#include "interface.h" 4#include "interface.h"
5#include <bu/membuf.h>
6#include <bu/formatter.h>
5 7
6class InterfaceGats : public Interface 8class InterfaceGats : public Interface
7{ 9{
@@ -12,6 +14,10 @@ public:
12 virtual void run( class Game *pGame ); 14 virtual void run( class Game *pGame );
13 15
14 virtual void display( const class SmlNode *pSml ); 16 virtual void display( const class SmlNode *pSml );
17
18private:
19 Bu::MemBuf mbResult;
20 Bu::Formatter fResult;
15}; 21};
16 22
17#endif 23#endif