mumble/src/License.h
2020-01-07 03:09:22 +01:00

40 lines
1.2 KiB
C++

// Copyright 2005-2020 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
#ifndef MUMBLE_LICENSE_H_
#define MUMBLE_LICENSE_H_
#include <QString>
#include <QList>
/// LicenseInfo represents license information
/// for a third-party library used by Mumble.
struct LicenseInfo {
/// The name of the third-party library.
QString name;
/// A URL for the website of the third-party library.
QString url;
/// The license text for the third-party library.
QString license;
};
/// The License class contains static helpers for
/// getting Mumble license/author information.
class License {
public:
/// Get the Mumble license text (the LICENSE file)
static QString license();
/// Get the Mumble authors list (the AUTHORS file)
static QString authors();
/// Get a list of license information for Mumble's
/// third-party libraries.
static QList<LicenseInfo> thirdPartyLicenses();
/// Get a human-readable, ready-to-print combination
/// of all of Mumble's third-party license information.
static QString printableThirdPartyLicenseInfo();
};
#endif