blob: b6f2095d87bfa807146a16fd480469e8e2583a59 (
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
34
35
36
37
38
39
40
41
42
|
#include "viewerplain.h"
#include "perform.h"
#include "plugger.h"
PluginInterface2( plain, ViewerPlain, Viewer, "Mike Buland", 0, 1 );
ViewerPlain::ViewerPlain()
{
}
ViewerPlain::~ViewerPlain()
{
}
void ViewerPlain::beginCommand( Action::eAction nAct, const std::string &sTarget, int nPerforms )
{
printf("--- %s ---\n", sTarget.c_str() );
}
void ViewerPlain::endCommand()
{
printf("\n");
}
void ViewerPlain::beginRequiresCheck( bool bCached, const std::string &sName )
{
printf(" deps: %s\n", sName.c_str() );
}
void ViewerPlain::endRequiresCheck()
{
}
void ViewerPlain::beginPerform( Perform *pPerform )
{
printf(" %8s: %s\n", pPerform->getRule().c_str(), pPerform->getTarget().c_str() );
}
void ViewerPlain::endPerform()
{
}
|