X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=action.cpp;h=427440b268c182270bd358d248870de02c78a8be;hb=3a5c7967d474fe42d471f417fa1f4bb1aec8e4fa;hp=695c74fb71d4b7b6d8e764e186a730ad4354317f;hpb=eb5481635b31a8517a2f443ca7b414e4ff515028;p=popboot.git diff --git a/action.cpp b/action.cpp index 695c74f..427440b 100644 --- a/action.cpp +++ b/action.cpp @@ -1,21 +1,28 @@ #include "action.h" +#include +using namespace std; Action::Action(std::string executable, literals preconditions, literals effects){ - _execututable = executable; + _executable = executable; _preconditions = preconditions; _effects = effects; } +Action::Action(const Action& action){ + _executable = action._executable; + _preconditions = action._preconditions; + _effects = action._effects; +} -const literals Action::effects(){ +literals Action::effects() const{ return _effects; } -const literals Action::preconditions(){ +literals Action::preconditions() const{ return _preconditions; } -int Action::execute(){ - +int Action::execute() const{ + cout << "Executing: " << _executable << endl; return 0; }