KCoreAddons

kosreleaseproxy.cpp
1// SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
2// SPDX-FileCopyrightText: 2025 Harald Sitter <sitter@kde.org>
3
4#include "kosreleaseproxy.h"
5
6QString KOSReleaseProxy::name() const
7{
8 return os.name();
9}
10
11QString KOSReleaseProxy::version() const
12{
13 return os.version();
14}
15
16QString KOSReleaseProxy::id() const
17{
18 return os.id();
19}
20
21QStringList KOSReleaseProxy::idLike() const
22{
23 return os.idLike();
24}
25
26QString KOSReleaseProxy::versionCodename() const
27{
28 return os.versionCodename();
29}
30
31QString KOSReleaseProxy::versionId() const
32{
33 return os.versionId();
34}
35
36QString KOSReleaseProxy::prettyName() const
37{
38 return os.prettyName();
39}
40
41QString KOSReleaseProxy::ansiColor() const
42{
43 return os.ansiColor();
44}
45
46QString KOSReleaseProxy::cpeName() const
47{
48 return os.cpeName();
49}
50
51QString KOSReleaseProxy::homeUrl() const
52{
53 return os.homeUrl();
54}
55
56QString KOSReleaseProxy::documentationUrl() const
57{
58 return os.documentationUrl();
59}
60
61QString KOSReleaseProxy::supportUrl() const
62{
63 return os.supportUrl();
64}
65
66QString KOSReleaseProxy::bugReportUrl() const
67{
68 return os.bugReportUrl();
69}
70
71QString KOSReleaseProxy::privacyPolicyUrl() const
72{
73 return os.privacyPolicyUrl();
74}
75
76QString KOSReleaseProxy::buildId() const
77{
78 return os.buildId();
79}
80QString KOSReleaseProxy::variant() const
81{
82 return os.variant();
83}
84
85QString KOSReleaseProxy::variantId() const
86{
87 return os.variantId();
88}
89
90QString KOSReleaseProxy::logo() const
91{
92 return os.logo();
93}
94
95QStringList KOSReleaseProxy::extraKeys() const
96{
97 return os.extraKeys();
98}
99
100QString KOSReleaseProxy::extraValue(const QString &key) const
101{
102 return os.extraValue(key);
103}
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Feb 28 2025 12:00:49 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.