diff options
Diffstat (limited to 'src/viewerplain.cpp')
-rw-r--r-- | src/viewerplain.cpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/viewerplain.cpp b/src/viewerplain.cpp new file mode 100644 index 0000000..edc5ba8 --- /dev/null +++ b/src/viewerplain.cpp | |||
@@ -0,0 +1,33 @@ | |||
1 | #include <stdio.h> | ||
2 | #include "viewerplain.h" | ||
3 | #include "perform.h" | ||
4 | |||
5 | ViewerPlain::ViewerPlain() | ||
6 | { | ||
7 | } | ||
8 | |||
9 | ViewerPlain::~ViewerPlain() | ||
10 | { | ||
11 | } | ||
12 | |||
13 | void ViewerPlain::beginTarget( const char *sName, const char *sType, const char *sOperation, int nPerforms ) | ||
14 | { | ||
15 | printf("--- %s ---\n", sName ); | ||
16 | } | ||
17 | |||
18 | void ViewerPlain::endTarget() | ||
19 | { | ||
20 | printf("\n"); | ||
21 | } | ||
22 | |||
23 | void ViewerPlain::beginPerform( Perform *pPerf ) | ||
24 | { | ||
25 | sTarget = pPerf->getTarget(); | ||
26 | printf(" check: %s\n", sTarget.getString() ); | ||
27 | } | ||
28 | |||
29 | void ViewerPlain::beginExecute() | ||
30 | { | ||
31 | printf(" build: %s\n", sTarget.getString() ); | ||
32 | } | ||
33 | |||