X-Git-Url: https://ruin.nu/git/?p=popboot.git;a=blobdiff_plain;f=action.cpp;h=427440b268c182270bd358d248870de02c78a8be;hp=695c74fb71d4b7b6d8e764e186a730ad4354317f;hb=498b277372ebab0008b97399d387285b36d88826;hpb=eb5481635b31a8517a2f443ca7b414e4ff515028 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; }