c96ab071fcf6ad1ba95341d0f6a89bd3d141b10b
[anna.git] / dynamic / launcher / default / 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_default_hpp
10 #define dynamic_launcher_default_hpp
11
12 // Project
13 #include <anna/comm/comm.hpp>
14
15
16 namespace anna {
17   namespace diameter {
18     namespace comm {
19        class OriginHost;
20     }
21   }
22 }
23
24 class Procedure {
25     anna::comm::Application *a_app;
26
27   public:
28     Procedure(anna::comm::Application *app) : a_app(app) {;}
29
30     virtual void execute(const std::string &args, std::string &response, anna::diameter::comm::OriginHost *originHost)  throw(anna::RuntimeException);
31 };
32
33 #endif