/* * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include namespace Swift { class FakeDNSSDQuerier; class FakeDNSSDBrowseQuery : public DNSSDBrowseQuery, public FakeDNSSDQuery { public: FakeDNSSDBrowseQuery(std::shared_ptr querier) : FakeDNSSDQuery(querier) { } void startBrowsing() { run(); } void stopBrowsing() { finish(); } }; }