Pimcommon

whatsnewinfo.cpp
1/*
2 SPDX-FileCopyrightText: 2024 Laurent Montel <montel.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#include "whatsnewinfo.h"
8using namespace PimCommon;
9WhatsNewInfo::WhatsNewInfo() = default;
10
11WhatsNewInfo::~WhatsNewInfo() = default;
12
13QStringList WhatsNewInfo::changes() const
14{
15 return mChanges;
16}
17
18void WhatsNewInfo::setChanges(const QStringList &newChanges)
19{
20 mChanges = newChanges;
21}
22
23QStringList WhatsNewInfo::newFeatures() const
24{
25 return mNewFeatures;
26}
27
28void WhatsNewInfo::setNewFeatures(const QStringList &newNewFeatures)
29{
30 mNewFeatures = newNewFeatures;
31}
32
33QStringList WhatsNewInfo::bugFixings() const
34{
35 return mBugFixings;
36}
37
38void WhatsNewInfo::setBugFixings(const QStringList &newBugFixings)
39{
40 mBugFixings = newBugFixings;
41}
42
43QString WhatsNewInfo::version() const
44{
45 return mVersion;
46}
47
48void WhatsNewInfo::setVersion(const QString &newVersion)
49{
50 mVersion = newVersion;
51}
52
53QDebug operator<<(QDebug d, const WhatsNewInfo &t)
54{
55 d.space() << "version" << t.version();
56 d.space() << "bugFixings" << t.bugFixings();
57 d.space() << "newFeatures" << t.newFeatures();
58 d.space() << "changes" << t.changes();
59 return d;
60}
KCALENDARCORE_EXPORT QDataStream & operator<<(QDataStream &out, const KCalendarCore::Alarm::Ptr &)
folderdialogacltab.h
QDebug & space()
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 4 2024 16:39:22 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.