/* * Copyright (c) 2010 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include namespace Swift { class FakeDNSSDQuerier; class FakeDNSSDQuery : public EventOwner, public boost::enable_shared_from_this { public: FakeDNSSDQuery(boost::shared_ptr); virtual ~FakeDNSSDQuery(); protected: void run(); void finish(); protected: boost::shared_ptr querier; }; }