aboutsummaryrefslogtreecommitdiff
path: root/src/performcommand.h
blob: 219ae2802994d1e203882afede0f9236998dbb8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef PERFORM_COMMAND_H
#define PERFORM_COMMAND_H

#include <stdint.h>

#include "perform.h"

class PerformCommand : public Perform
{
public:
	PerformCommand();
	virtual ~PerformCommand();

private:

};

#endif