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
26

source code of syndication/src/personimpl.cpp