aboutsummaryrefslogtreecommitdiff
path: root/src/functiontargets.h
blob: 8d3a0edf6bf957c71a758b2f874093c404877de5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef FUNCTION_TARGETS_H
#define FUNCTION_TARGETS_H

#include <stdint.h>

#include "function.h"

class FunctionTargets : public Function
{
public:
	FunctionTargets();
	virtual ~FunctionTargets();
	
	virtual void execute( Build *bld, const StringList &lInput, StringList &lOutput );
	virtual Function *duplicate( Build &bld, const std::string &cont, VarMap *mExtra );

private:

};

#endif