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

Rule::Rule()
{
}

Rule::~Rule()
{
}

StringList Rule::execute( Build &bld, StringList &lInput, PerformList &lPerf )
{
	StringList lOutput;

	return lOutput;
}