#pragma once #include #include #include "Swiften/EventLoop/EventOwner.h" 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; }; }