ANNA Suite  2020b
Multipurpose development suite for Telco applications
LocalConnection.hpp
Go to the documentation of this file.
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 anna_comm_handler_LocalConnection_hpp
10 #define anna_comm_handler_LocalConnection_hpp
11 
13 
14 namespace anna {
15 
16 namespace comm {
17 
18 class LocalConnection;
19 
20 namespace handler {
21 
23 public:
24  LocalConnection(Communicator* communicator) :
26  a_localConnection(NULL)
27  {;}
28 
29  void setup(comm::LocalConnection* localConnection) { a_localConnection = localConnection; }
30 
32 
33 private:
34  comm::LocalConnection* a_localConnection;
35 
36  void initialize() noexcept(false);
37  void finalize() ;
38 
39  std::string asString() const ;
40  xml::Node* asXML(xml::Node*) const ;
41 };
42 
43 }
44 }
45 }
46 
47 #endif
48 
Definition: Communicator.hpp:79
Definition: MetaClientSocket.hpp:22
Definition: Node.hpp:56
Definition: LocalConnection.hpp:31
Definition: LocalConnection.hpp:22
comm::ClientSocket * getClientSocket()
Definition: ClientSocket.hpp:38
Definition: app.hpp:12
void setup(comm::LocalConnection *localConnection)
Definition: LocalConnection.hpp:29
Definition: Handler.hpp:33
Definition: Handler.hpp:47
LocalConnection(Communicator *communicator)
Definition: LocalConnection.hpp:24