aboutsummaryrefslogtreecommitdiff
path: root/src/viewerplain.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-08-05 06:52:01 +0000
committerMike Buland <eichlan@xagasoft.com>2006-08-05 06:52:01 +0000
commit2c0c23b75f563d0a1e68f6079a8eea73c40a877a (patch)
tree5371a7fbf46bb21bd283f9162358ed9146912259 /src/viewerplain.h
parent8dd79b7b5a0309f9bc1185019a4af16b3b52aece (diff)
downloadbuild-2c0c23b75f563d0a1e68f6079a8eea73c40a877a.tar.gz
build-2c0c23b75f563d0a1e68f6079a8eea73c40a877a.tar.bz2
build-2c0c23b75f563d0a1e68f6079a8eea73c40a877a.tar.xz
build-2c0c23b75f563d0a1e68f6079a8eea73c40a877a.zip
Tweaked the cache format, it's no longer compatable with the old version, but it
is less than one tenth the size, without using anything as slow as a compresion system, I just store each string only once (it's sort of compression). I also updated the plain viewer to not be so annoying if it doesn't have anything to do.
Diffstat (limited to 'src/viewerplain.h')
-rw-r--r--src/viewerplain.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/viewerplain.h b/src/viewerplain.h
index 7b4b189..1ec2b64 100644
--- a/src/viewerplain.h
+++ b/src/viewerplain.h
@@ -16,9 +16,13 @@ public:
16 virtual void endTarget(); 16 virtual void endTarget();
17 17
18 virtual void beginPerform( Perform *pPerf ); 18 virtual void beginPerform( Perform *pPerf );
19 virtual void beginExtraRequiresCheck( const char *sCommand );
20 void printHead();
19 virtual void beginExecute(); 21 virtual void beginExecute();
20 22
21private: 23private:
24 class StaticString sAction;
25 bool bPrinted;
22 class StaticString sTarget; 26 class StaticString sTarget;
23 27
24}; 28};