Files
libreoffice/sd/source/ui/remotecontrol/AvahiNetworkService.hxx
Siqi 0dc8821659 use config_features.h.in instead
Change-Id: I1332fc22caae759c65b64e6c43e73740245e4abd
2013-07-26 02:05:05 +02:00

21 lines
438 B
C++

#ifndef AVAHI_NETWORK_SERVICE_H
#define AVAHI_NETWORK_SERVICE_H
#include <string>
#include "ZeroconfService.hxx"
namespace sd {
class AvahiNetworkService : public ZeroconfService
{
public:
AvahiNetworkService(const std::string& aname = "", unsigned int aport = 1599)
: ZeroconfService(aname, aport){}
virtual ~AvahiNetworkService(){}
void clear();
void setup();
};
}
#endif