TDME2  1.9.200
UDPServerGroup.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <tdme/tdme.h>
8 
12 
13 /**
14  * UDP server group class
15  * @author Andreas Drewke
16  */
17 class tdme::network::udpserver::UDPServerGroup : public ServerGroup<UDPServer, UDPServerClient, UDPServerGroup> {
18 public:
19  /**
20  * @brief Creates a frame to be used with send
21  * @return frame to be send
22  */
23  // stringstream* createFrame();
24 
25  /**
26  * @brief Sends a frame to client, takes over ownership of frame
27  * @param frame frame data
28  * @param safe safe, requires ack and retransmission
29  */
30  // void send(stringstream* frame, bool safe = true);
31 };
32 
Base class for network server groups.
Definition: ServerGroup.h:34
Base class for network UDP server clients.
Base class for network UDP servers.
Definition: UDPServer.h:42