]> ruin.nu Git - popboot.git/blob - action.cpp
some changes
[popboot.git] / action.cpp
1 #include "action.h"
2
3 Action::Action(std::string executable, literals preconditions, literals effects){
4         _execututable = executable;
5         _preconditions = preconditions;
6         _effects = effects;
7 }
8
9
10 const literals Action::effects(){
11         return _effects;
12 }
13
14 const literals Action::preconditions(){
15         return _preconditions;
16 }
17
18 int Action::execute(){
19
20         return 0;
21 }