kde-playground/kdepimlibs/syndication/personimpl.h
2015-04-14 21:49:29 +00:00

66 lines
1.8 KiB
C++

/*
* This file is part of the syndication library
*
* Copyright (C) 2006 Frank Osterfeld <osterfeld@kde.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef SYNDICATION_PERSONIMPL_H
#define SYNDICATION_PERSONIMPL_H
#include <syndication/person.h>
#include "ksyndication_export.h"
#include <QtCore/QString>
#include <boost/shared_ptr.hpp>
namespace Syndication {
class PersonImpl;
//@cond PRIVATE
typedef boost::shared_ptr<PersonImpl> PersonImplPtr;
/**
* @internal
*/
class SYNDICATION_EXPORT PersonImpl : public Person
{
public:
PersonImpl();
PersonImpl(const QString& name, const QString& uri, const QString& email);
virtual bool isNull() const { return m_null; }
virtual QString name() const { return m_name; }
virtual QString uri() const { return m_uri; }
virtual QString email() const { return m_email; }
private:
bool m_null;
QString m_name;
QString m_uri;
QString m_email;
};
//@endcond
} // namespace Syndication
#endif // SYNDICATION_PERSONIMPL_H