/* * Copyright (c) 2010 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); boost::shared_ptr createQuerier(); bool canCreate(); private: EventLoop* eventLoop; }; }