1 // Copyright 2005-2019 The Mumble Developers. All rights reserved.
2 // Use of this source code is governed by a BSD-style license
3 // that can be found in the LICENSE file at the root of the
4 // Mumble source tree or at <https://www.mumble.info/LICENSE>.
5 
6 #ifndef MUMBLE_MUMBLE_BONJOURCLIENT_H_
7 #define MUMBLE_MUMBLE_BONJOURCLIENT_H_
8 
9 #include <QtCore/QObject>
10 
11 class BonjourServiceBrowser;
12 class BonjourServiceResolver;
13 
14 class BonjourClient : public QObject {
15 	private:
16 		Q_OBJECT
17 		Q_DISABLE_COPY(BonjourClient)
18 	public:
19 		BonjourClient();
20 		~BonjourClient() Q_DECL_OVERRIDE;
21 
22 		BonjourServiceBrowser *bsbBrowser;
23 		BonjourServiceResolver *bsrResolver;
24 };
25 
26 #endif
27