aboutsummaryrefslogtreecommitdiff
path: root/src/perform.h
blob: 914f3b0a034f67a9f62c9a1e9ab71e55ce93f7e9 (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
#ifndef PERFORM_H
#define PERFORM_H

#include <stdint.h>
#include "staticstring.h"

class Perform
{
public:
	Perform( const char *sTarget );
	virtual ~Perform();

	virtual void execute( class Builder &bld ) = 0;

	const char *getTarget()
	{
		return sTarget;
	}

private:
	StaticString sTarget;

};

#endif