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

#include <stdint.h>

#include "perform.h"
#include "staticstring.h"

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

	virtual void execute( class Builder &bld );

private:
	StaticString sCommand;
};

#endif