Syndication

personimpl.cpp
1 /*
2  This file is part of the syndication library
3  SPDX-FileCopyrightText: 2006 Frank Osterfeld <[email protected]>
4 
5  SPDX-License-Identifier: LGPL-2.0-or-later
6 */
7 
8 #include "personimpl.h"
9 
10 namespace Syndication
11 {
12 PersonImpl::PersonImpl()
13  : m_null(true)
14 {
15 }
16 
17 PersonImpl::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-2023 The KDE developers.
Generated on Tue Nov 28 2023 03:57:59 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.