diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-12-21 18:03:28 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-12-21 18:03:28 +0000 |
commit | 51e21a316be6e052251b3dfc7d671061ebd67cee (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/viewer.h | |
parent | ad6f4dfcc671d3f8d458c42b0992956f2a2cf979 (diff) | |
download | build-51e21a316be6e052251b3dfc7d671061ebd67cee.tar.gz build-51e21a316be6e052251b3dfc7d671061ebd67cee.tar.bz2 build-51e21a316be6e052251b3dfc7d671061ebd67cee.tar.xz build-51e21a316be6e052251b3dfc7d671061ebd67cee.zip |
Removed the old trunk contents. About to load up m3
Diffstat (limited to '')
-rw-r--r-- | src/viewer.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/viewer.h b/src/viewer.h deleted file mode 100644 index 7ee6b21..0000000 --- a/src/viewer.h +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | #ifndef VIEWER_H | ||
2 | #define VIEWER_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | #include <string> | ||
6 | #include "action.h" | ||
7 | |||
8 | class Perform; | ||
9 | |||
10 | class Viewer | ||
11 | { | ||
12 | public: | ||
13 | Viewer(); | ||
14 | virtual ~Viewer(); | ||
15 | |||
16 | virtual void beginAction( const std::string &sName, int nCommands ); | ||
17 | virtual void endAction(); | ||
18 | |||
19 | virtual void beginCommand( Action::eAction nAct, const std::string &sTarget ); | ||
20 | virtual void endCommand(); | ||
21 | virtual void beginPerforms( int nCount ); | ||
22 | virtual void endPerforms(); | ||
23 | |||
24 | virtual void beginRequiresCheck( bool bCached, const std::string &sName ); | ||
25 | virtual void endRequiresCheck(); | ||
26 | virtual void skipRequiresCheck( bool bCached, const std::string &sName ); | ||
27 | virtual void beginPerform( Perform *pPerform ); | ||
28 | virtual void endPerform(); | ||
29 | virtual void skipPerform( Perform *pPerform ); | ||
30 | virtual void beginExecute(); | ||
31 | virtual void endExecute(); | ||
32 | virtual void executeCmd( const std::string &sCmd ); | ||
33 | |||
34 | private: | ||
35 | |||
36 | }; | ||
37 | |||
38 | #endif | ||