diff options
Diffstat (limited to 'src/viewermake.cpp')
-rw-r--r-- | src/viewermake.cpp | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/src/viewermake.cpp b/src/viewermake.cpp new file mode 100644 index 0000000..7f63552 --- /dev/null +++ b/src/viewermake.cpp | |||
@@ -0,0 +1,62 @@ | |||
1 | #include <stdio.h> | ||
2 | #include "viewermake.h" | ||
3 | #include "perform.h" | ||
4 | |||
5 | ViewerMake::ViewerMake() | ||
6 | { | ||
7 | } | ||
8 | |||
9 | ViewerMake::~ViewerMake() | ||
10 | { | ||
11 | } | ||
12 | |||
13 | void ViewerMake::beginTarget( const char *sName, const char *sType, const char *sOperation, int nPerforms ) | ||
14 | { | ||
15 | //sAction = sName; | ||
16 | //bPrinted = false; | ||
17 | } | ||
18 | |||
19 | void ViewerMake::printHead() | ||
20 | { | ||
21 | /* | ||
22 | if( bPrinted == false ) | ||
23 | { | ||
24 | printf("--- %s ---\n", sAction.getString() ); | ||
25 | bPrinted = true; | ||
26 | }*/ | ||
27 | } | ||
28 | |||
29 | void ViewerMake::endTarget() | ||
30 | { | ||
31 | /*if( bPrinted == true ) | ||
32 | { | ||
33 | printf("\n"); | ||
34 | } | ||
35 | else | ||
36 | { | ||
37 | printf("Nothing to be done for %s.\n", sAction.getString() ); | ||
38 | }*/ | ||
39 | } | ||
40 | |||
41 | void ViewerMake::beginPerform( Perform *pPerf ) | ||
42 | { | ||
43 | //sTarget = pPerf->getTarget(); | ||
44 | } | ||
45 | |||
46 | void ViewerMake::beginExtraRequiresCheck( const char *sCommand ) | ||
47 | { | ||
48 | //printHead(); | ||
49 | //printf(" check: %s\n", sTarget.getString() ); | ||
50 | } | ||
51 | |||
52 | void ViewerMake::beginExecute() | ||
53 | { | ||
54 | //printHead(); | ||
55 | //printf(" build: %s\n", sTarget.getString() ); | ||
56 | } | ||
57 | |||
58 | void ViewerMake::executeCmd( const char *sCmd ) | ||
59 | { | ||
60 | printf("%s\n", sCmd ); | ||
61 | } | ||
62 | |||