Initial feature commit
[anna.git] / dynamic / launcher / gx / 00001 / Procedure.hpp
diff --git a/dynamic/launcher/gx/00001/Procedure.hpp b/dynamic/launcher/gx/00001/Procedure.hpp
new file mode 100644 (file)
index 0000000..884cad5
--- /dev/null
@@ -0,0 +1,26 @@
+// 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 //
+
+
+#ifndef dynamic_launcher_gx_00001_hpp
+#define dynamic_launcher_gx_00001_hpp
+
+// Project
+#include <anna/comm/comm.hpp>
+
+
+
+class Procedure {
+    anna::comm::Application *a_app;
+
+  public:
+    Procedure(anna::comm::Application *app) : a_app(app) {;}
+
+    virtual void execute(const std::string &args, std::string &response) throw();
+};
+
+#endif