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_USAGE_H_
7 #define MUMBLE_MUMBLE_USAGE_H_
8 
9 #include <QtCore/QBuffer>
10 #include <QtCore/QDataStream>
11 #include <QtCore/QObject>
12 
13 class ClientUser;
14 
15 class Usage : public QObject {
16 		Q_OBJECT
17 	protected:
18 		QBuffer qbReport;
19 		QDataStream qdsReport;
20 	public:
21 		Usage(QObject *p = NULL);
22 	public slots:
23 		void registerUsage();
24 };
25 
26 #endif
27