blob: edc5ba8d8940d7e008c4214d628d004d711affbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include <stdio.h>
#include "viewerplain.h"
#include "perform.h"
ViewerPlain::ViewerPlain()
{
}
ViewerPlain::~ViewerPlain()
{
}
void ViewerPlain::beginTarget( const char *sName, const char *sType, const char *sOperation, int nPerforms )
{
printf("--- %s ---\n", sName );
}
void ViewerPlain::endTarget()
{
printf("\n");
}
void ViewerPlain::beginPerform( Perform *pPerf )
{
sTarget = pPerf->getTarget();
printf(" check: %s\n", sTarget.getString() );
}
void ViewerPlain::beginExecute()
{
printf(" build: %s\n", sTarget.getString() );
}
|