OriginHostManager to abstract Procedure (dyamic) from knowing the OriginHost node
[anna.git] / dynamic / launcher / gx / 00001 / Procedure.hpp
1 // ANNA - Anna is Not Nothingness Anymore                                                         //
2 //                                                                                                //
3 // (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo                         //
4 //                                                                                                //
5 // See project site at http://redmine.teslayout.com/projects/anna-suite                           //
6 // See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE //
7
8
9 #ifndef dynamic_launcher_gx_00001_hpp
10 #define dynamic_launcher_gx_00001_hpp
11
12 // Project
13 #include <anna/comm/comm.hpp>
14
15
16 class Procedure {
17     anna::comm::Application *a_app;
18
19   public:
20     Procedure(anna::comm::Application *app) : a_app(app) {;}
21
22     virtual void execute(const std::string &args, std::string &response)  throw(anna::RuntimeException);
23 };
24
25 #endif