summaryrefslogtreecommitdiffstats
blob: 9c4e4e6bdcd305b7e82ced3bea2993bcf400dafe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "Swiften/LinkLocal/DNSSDServiceFactory.h"

namespace Swift {
	class PlatformDNSSDServiceFactory : public DNSSDServiceFactory {
		public:
			PlatformDNSSDServiceFactory();

			bool canCreate() const;
			virtual boost::shared_ptr<DNSSDService> createDNSSDService();
	};
}