aboutsummaryrefslogtreecommitdiff
path: root/src/viewerplainpct.h
diff options
context:
space:
mode:
authorDavid <david@xagasoft.com>2006-12-24 21:13:02 +0000
committerDavid <david@xagasoft.com>2006-12-24 21:13:02 +0000
commite7c032338901274425b8d87a527d6aee57711745 (patch)
treebbaba25f75fd417497313799db13e15df688f69f /src/viewerplainpct.h
parentb792e9f4b32013c258fd78bc3271dd6730fccda3 (diff)
downloadbuild-e7c032338901274425b8d87a527d6aee57711745.tar.gz
build-e7c032338901274425b8d87a527d6aee57711745.tar.bz2
build-e7c032338901274425b8d87a527d6aee57711745.tar.xz
build-e7c032338901274425b8d87a527d6aee57711745.zip
david - tweaked so numbers are at least accurate now... percentages actually work, but targets built as a result of a requires chain no longer count towards/ nor display the total count. also added a color view for fun
Diffstat (limited to 'src/viewerplainpct.h')
-rw-r--r--src/viewerplainpct.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/viewerplainpct.h b/src/viewerplainpct.h
index aa9a228..63bc00d 100644
--- a/src/viewerplainpct.h
+++ b/src/viewerplainpct.h
@@ -1,5 +1,5 @@
1#ifndef VIEWER_PLAIN_H 1#ifndef VIEWER_PLAIN_PCT_H
2#define VIEWER_PLAIN_H 2#define VIEWER_PLAIN_PCT_H
3 3
4#include <stdint.h> 4#include <stdint.h>
5#include <list> 5#include <list>
@@ -27,12 +27,12 @@ public:
27 27
28 virtual void endAction(); 28 virtual void endAction();
29 29
30 void printPerform(const char *sRule, const char *sTarget);
30 void printHead(); 31 void printHead();
31 void indent(); 32 void indent();
32 33
33private: 34private:
34 //bool bDidReq; 35 int iTC, iCC;
35 int iTP, iCP, iTC, iCC;
36 36
37 bool bRunClean; 37 bool bRunClean;
38 typedef struct 38 typedef struct
@@ -40,6 +40,7 @@ private:
40 int nLevel; 40 int nLevel;
41 bool bCmdClean; 41 bool bCmdClean;
42 std::string sTarget; 42 std::string sTarget;
43 int iTP, iCP;
43 } Cmd; 44 } Cmd;
44 typedef std::list<Cmd> CmdStack; 45 typedef std::list<Cmd> CmdStack;
45 CmdStack sCmd; 46 CmdStack sCmd;