]> ruin.nu Git - popboot.git/blobdiff - action.cpp
initial execution of the plan
[popboot.git] / action.cpp
index 3e9cddf692163b41a515655c33e37ef29bffd270..427440b268c182270bd358d248870de02c78a8be 100644 (file)
@@ -1,4 +1,6 @@
 #include "action.h"
+#include <iostream>
+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;
 }