blob: 473d71cba0adb945fe4b9a1db5cc5aac803b44e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef INTERFACE_GATS_H
#define INETRFACE_GATS_H
#include "interface.h"
#include <bu/membuf.h>
#include <bu/formatter.h>
class InterfaceGats : public Interface
{
public:
InterfaceGats();
virtual ~InterfaceGats();
virtual void run( class Game *pGame );
virtual void display( const class SmlNode *pSml );
private:
Bu::MemBuf mbResult;
Bu::Formatter fResult;
};
#endif
|