Initial feature commit
[anna.git] / dynamic / launcher / default / Procedure.cpp
diff --git a/dynamic/launcher/default/Procedure.cpp b/dynamic/launcher/default/Procedure.cpp
new file mode 100644 (file)
index 0000000..57bb7e0
--- /dev/null
@@ -0,0 +1,23 @@
+// ANNA - Anna is Not Nothingness Anymore                                                         //
+//                                                                                                //
+// (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo                         //
+//                                                                                                //
+// See project site at http://redmine.teslayout.com/projects/anna-suite                           //
+// See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE //
+
+// Standard
+#include <iostream>
+#include <string>
+
+
+// Local
+#include "Procedure.hpp"
+
+void Procedure::execute(const std::string &args, std::string &response) throw() {
+  response = "Empty default implementation. Make dynamic library and reimplement this method.";
+  if (args != "" ) {
+    response += " Provided argument(s) ignored: ";
+    response += args;
+  }
+}
+