blob: d128845883b0bbe74f8581bf7a516be586efc141 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef PERFORM_COMMAND_H
#define PERFORM_COMMAND_H
#include <stdint.h>
#include "perform.h"
class PerformCommand : public Perform
{
public:
PerformCommand();
virtual ~PerformCommand();
virtual Perform *duplicate( Build &bld, const std::string &cont, VarMap *mExtra );
virtual void execute( Build &bld );
private:
};
#endif
|