diff options
author | David <david@xagasoft.com> | 2006-12-24 21:13:02 +0000 |
---|---|---|
committer | David <david@xagasoft.com> | 2006-12-24 21:13:02 +0000 |
commit | e7c032338901274425b8d87a527d6aee57711745 (patch) | |
tree | bbaba25f75fd417497313799db13e15df688f69f /src/viewerplainpct.h | |
parent | b792e9f4b32013c258fd78bc3271dd6730fccda3 (diff) | |
download | build-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.h | 9 |
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 | ||
33 | private: | 34 | private: |
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; |