aboutsummaryrefslogtreecommitdiff
path: root/src/viewerplain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/viewerplain.cpp')
-rw-r--r--src/viewerplain.cpp33
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
5ViewerPlain::ViewerPlain()
6{
7}
8
9ViewerPlain::~ViewerPlain()
10{
11}
12
13void ViewerPlain::beginTarget( const char *sName, const char *sType, const char *sOperation, int nPerforms )
14{
15 printf("--- %s ---\n", sName );
16}
17
18void ViewerPlain::endTarget()
19{
20 printf("\n");
21}
22
23void ViewerPlain::beginPerform( Perform *pPerf )
24{
25 sTarget = pPerf->getTarget();
26 printf(" check: %s\n", sTarget.getString() );
27}
28
29void ViewerPlain::beginExecute()
30{
31 printf(" build: %s\n", sTarget.getString() );
32}
33