| 12345678910111213141516171819 |
- #ifndef NETWORK_BROADCASTCLIENTIMPL_H
- #define NETWORK_BROADCASTCLIENTIMPL_H
- #include "UdpClientImpl.h"
- #include <functional>
- #include <string>
- namespace Network {
- class BroadcastClientImpl : public UdpClientImpl
- {
- public:
- BroadcastClientImpl(const std::string& listenAddress, int broadcastPort, std::function<void(const std::string&)> callback);
- };
- } // namespace Network
- #endif // NETWORK_BROADCASTCLIENTIMPL_H
|