aboutsummaryrefslogtreecommitdiff
path: root/src/command.cpp
blob: 72f9a4c73131ab639007e60ca0f5a5ae03359403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "command.h"

Command::Command( CmdType cmd, const char *sTarget ) :
	nType( cmd ),
	sTarget( sTarget )
{
}

Command::~Command()
{
}

void Command::debug()
{
	static const char *cmdt[]={"Check", "Clean"};
	printf("      command: %s %s\n", cmdt[ nType ], sTarget.getString() );
}