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

#include <stdint.h>

class Action
{
public:
	enum eAction
	{
		actCheck,
		actClean
	};
public:
	Action();
	virtual ~Action();

private:

};

#endif