]> ruin.nu Git - popboot.git/blob - action.h
added action files
[popboot.git] / action.h
1 #ifndef __ACTION_H__
2 #define __ACTION_H__
3
4 class Action {
5
6         protected:
7                 std::string executable;
8                 std::vector<string> preconditions;
9                 std::vector<string> effects;
10
11 };
12
13 #endif