File indexing completed on 2024-11-10 12:29:15
0001 /* 0002 This file is part of the syndication library 0003 SPDX-FileCopyrightText: 2006 Frank Osterfeld <osterfeld@kde.org> 0004 0005 SPDX-License-Identifier: LGPL-2.0-or-later 0006 */ 0007 0008 #include "personimpl.h" 0009 0010 namespace Syndication 0011 { 0012 PersonImpl::PersonImpl() 0013 : m_null(true) 0014 { 0015 } 0016 0017 PersonImpl::PersonImpl(const QString &name, const QString &uri, const QString &email) 0018 : m_null(false) 0019 , m_name(name) 0020 , m_uri(uri) 0021 , m_email(email) 0022 { 0023 } 0024 0025 } // namespace Syndication