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/viewercolorpct.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/viewercolorpct.h | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/src/viewercolorpct.h b/src/viewercolorpct.h deleted file mode 100644 index dc810c1..0000000 --- a/src/viewercolorpct.h +++ /dev/null | |||
@@ -1,49 +0,0 @@ | |||
1 | #ifndef VIEWER_COLOR_PCT_H | ||
2 | #define VIEWER_COLOR_PCT_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | #include <list> | ||
6 | #include "viewer.h" | ||
7 | |||
8 | class ViewerColorPct : public Viewer | ||
9 | { | ||
10 | public: | ||
11 | ViewerColorPct(); | ||
12 | virtual ~ViewerColorPct(); | ||
13 | |||
14 | virtual void beginCommand( Action::eAction nAct, const std::string &sTarget ); | ||
15 | virtual void endCommand(); | ||
16 | |||
17 | virtual void beginRequiresCheck( bool bCached, const std::string &sName ); | ||
18 | virtual void endRequiresCheck(); | ||
19 | virtual void beginPerform( Perform *pPerform ); | ||
20 | virtual void endPerform(); | ||
21 | virtual void beginPerforms( int nCount ); | ||
22 | |||
23 | virtual void skipRequiresCheck( bool bCached, const std::string &sName ); | ||
24 | virtual void skipPerform( Perform *pPerform ); | ||
25 | |||
26 | virtual void beginAction( const std::string &sName, int nCommands ); | ||
27 | |||
28 | virtual void endAction(); | ||
29 | |||
30 | void printPerform(const char *sRule, const char *sTarget); | ||
31 | void printHead(); | ||
32 | void indent(); | ||
33 | |||
34 | private: | ||
35 | int iTC, iCC; | ||
36 | |||
37 | bool bRunClean; | ||
38 | typedef struct | ||
39 | { | ||
40 | int nLevel; | ||
41 | bool bCmdClean; | ||
42 | std::string sTarget; | ||
43 | int iTP, iCP; | ||
44 | } Cmd; | ||
45 | typedef std::list<Cmd> CmdStack; | ||
46 | CmdStack sCmd; | ||
47 | }; | ||
48 | |||
49 | #endif | ||