bump product version to 5.0.4.1
[LibreOffice.git] / sd / source / ui / remotecontrol / WINNetworkService.hxx
blob0ca284feea0c0477ba3e1d2a7c7a4a062a73df47
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 "mDNSResponder/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(0) {}
19 virtual ~WINNetworkService(){}
21 void clear();
22 void setup();
26 #endif