OriginHostManager to abstract Procedure (dyamic) from knowing the OriginHost node
[anna.git] / dynamic / launcher / default / Procedure.hpp
index c96ab07..b8096bc 100644 (file)
 #include <anna/comm/comm.hpp>
 
 
-namespace anna {
-  namespace diameter {
-    namespace comm {
-       class OriginHost;
-    }
-  }
-}
-
 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, anna::diameter::comm::OriginHost *originHost)  throw(anna::RuntimeException);
+    virtual void execute(const std::string &args, std::string &response)  throw(anna::RuntimeException);
 };
 
 #endif