blob: 7b4b1891844b5882b7ff39461d6bb6a3335c6448 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef VIEWER_PLAIN_H
#define VIEWER_PLAIN_H
#include <stdint.h>
#include "viewer.h"
#include "staticstring.h"
class ViewerPlain : public Viewer
{
public:
ViewerPlain();
virtual ~ViewerPlain();
virtual void beginTarget( const char *sName, const char *sType, const char *sOperation, int nPerforms );
virtual void endTarget();
virtual void beginPerform( Perform *pPerf );
virtual void beginExecute();
private:
class StaticString sTarget;
};
#endif
|