aboutsummaryrefslogtreecommitdiff
path: root/src/performcommand.cpp
blob: 6963022f3b8e4590dc3738312fb451127b6c3f5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "performcommand.h"
#include "plugger.h"

PluginInterface2(command, PerformCommand, Perform, "Mike Buland", 0, 1 );

PerformCommand::PerformCommand()
{
}

PerformCommand::~PerformCommand()
{
}

Perform *PerformCommand::duplicate( Build &bld, const std::string &cont )
{
	Perform *pRet = new PerformCommand();
	pRet->copyData( this, bld, cont, NULL );
	return pRet;
}