KTextAddons
7#include "textautogeneratehistoryinfo.h"
9using namespace TextAutogenerateText;
10TextAutoGenerateHistoryInfo::TextAutoGenerateHistoryInfo() =
default;
12TextAutoGenerateHistoryInfo::~TextAutoGenerateHistoryInfo() =
default;
14QDebug operator<<(
QDebug d,
const TextAutogenerateText::TextAutoGenerateHistoryInfo &t)
16 d.
space() <<
"subject:" << t.subject();
17 d.
space() <<
"datetime:" << t.dateTime();
18 d.
space() <<
"model" << t.model();
19 d.
space() <<
"engine" << t.engine();
20 d.
space() <<
"referenceUuid" << t.referenceUuid();
24QString TextAutoGenerateHistoryInfo::subject()
const
29void TextAutoGenerateHistoryInfo::setSubject(
const QString &newSubject)
31 mSubject = newSubject;
34qint64 TextAutoGenerateHistoryInfo::dateTime()
const
39void TextAutoGenerateHistoryInfo::setDateTime(qint64 newDateTime)
41 mDateTime = newDateTime;
44QString TextAutoGenerateHistoryInfo::model()
const
49void TextAutoGenerateHistoryInfo::setModel(
const QString &newModel)
54QString TextAutoGenerateHistoryInfo::engine()
const
59void TextAutoGenerateHistoryInfo::setEngine(
const QString &newEngine)
64QByteArray TextAutoGenerateHistoryInfo::referenceUuid()
const
66 return mReferenceUuid;
69void TextAutoGenerateHistoryInfo::setReferenceUuid(
const QByteArray &newReferenceUuid)
71 mReferenceUuid = newReferenceUuid;
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 18 2025 12:00:52 by
doxygen 1.13.2 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.