aboutsummaryrefslogtreecommitdiff
path: root/src/target.h
blob: 667c467ea8966b6ec6742085a5d0a057c8c5be23 (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
26
27
28
#ifndef TARGET_H
#define TARGET_H

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

class Target
{
public:
	Target( const char *sName );
	virtual ~Target();

	const char *getName()
	{
		return sName;
	}

	void setRule( const char *sRule );

	virtual void debug();

private:
	StaticString sName;
	StaticString sRule;

};

#endif