Loading...
Searching...
No Matches
Licenses.hpp
1#pragma once
2#include <QByteArray>
3#include <QString>
4
5#include <score_lib_base_export.h>
6
7#include <vector>
8
9namespace score
10{
13{
14 QString name;
15 QString url;
16 QString header;
17 QByteArray license;
18};
19
21SCORE_LIB_BASE_EXPORT
22std::vector<LicenseInfo> thirdPartyLicenses();
23}
Base toolkit upon which the software is built.
Definition Application.cpp:116
std::vector< LicenseInfo > thirdPartyLicenses()
Sorted by name, case-insensitive. Only entries with a header or a text.
Definition Licenses.cpp:13
A third-party component shipped with score and its license.
Definition Licenses.hpp:13
QString header
Short license name, e.g.
Definition Licenses.hpp:16
QByteArray license
Full license text when it is bundled.
Definition Licenses.hpp:17