/* * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include namespace Swift { class DNSSDQuerier; class EventLoop; class SWIFTEN_API PlatformDNSSDQuerierFactory { public: PlatformDNSSDQuerierFactory(EventLoop* eventLoop); std::shared_ptr createQuerier(); bool canCreate(); private: EventLoop* eventLoop; }; }