bump product version to 6.3.0.0.beta1
[LibreOffice.git] / sd / source / ui / remotecontrol / WINNetworkService.hxx
blob9194fb60d2563e2582891482ea09b7c9900e394e
1 #ifndef INCLUDED_SD_SOURCE_UI_REMOTECONTROL_WINNETWORKSERVICE_HXX
2 #define INCLUDED_SD_SOURCE_UI_REMOTECONTROL_WINNETWORKSERVICE_HXX
4 #include <string>
5 #undef WB_LEFT
6 #undef WB_RIGHT
7 #include <dns_sd.h>
8 #include "ZeroconfService.hxx"
10 namespace sd{
11 class WINNetworkService : public ZeroconfService
13 private:
14 DNSServiceRef client;
16 public:
17 WINNetworkService(const std::string& aname = "", unsigned int aport = 1599)
18 : ZeroconfService(aname, aport), client(nullptr) {}
20 void clear() override;
21 void setup() override;
25 #endif