Syndication

personimpl.cpp
1/*
2 This file is part of the syndication library
3 SPDX-FileCopyrightText: 2006 Frank Osterfeld <osterfeld@kde.org>
4
5 SPDX-License-Identifier: LGPL-2.0-or-later
6*/
7
8#include "personimpl.h"
9
10namespace Syndication
11{
12PersonImpl::PersonImpl()
13 : m_null(true)
14{
15}
16
17PersonImpl::PersonImpl(const QString &name, const QString &uri, const QString &email)
18 : m_null(false)
19 , m_name(name)
20 , m_uri(uri)
21 , m_email(email)
22{
23}
24
25} // namespace Syndication
QString name(StandardShortcut id)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:14:15 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.