X-Git-Url: https://ruin.nu/git/?p=popboot.git;a=blobdiff_plain;f=action.cpp;h=427440b268c182270bd358d248870de02c78a8be;hp=3e9cddf692163b41a515655c33e37ef29bffd270;hb=498b277372ebab0008b97399d387285b36d88826;hpb=f42886c46e17e6e429efa36aab69e0cbd22cf87a diff --git a/action.cpp b/action.cpp index 3e9cddf..427440b 100644 --- a/action.cpp +++ b/action.cpp @@ -1,4 +1,6 @@ #include "action.h" +#include +using namespace std; Action::Action(std::string executable, literals preconditions, literals effects){ _executable = executable; @@ -21,6 +23,6 @@ literals Action::preconditions() const{ } int Action::execute() const{ - + cout << "Executing: " << _executable << endl; return 0; }