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