Syndication Library
23 #ifndef SYNDICATION_PERSONIMPL_H
24 #define SYNDICATION_PERSONIMPL_H
26 #include <syndication/person.h>
27 #include "ksyndication_export.h"
29 #include <QtCore/QString>
31 #include <boost/shared_ptr.hpp>
33 namespace Syndication {
38 typedef boost::shared_ptr<PersonImpl> PersonImplPtr;
43 class SYNDICATION_EXPORT PersonImpl :
public Person
48 PersonImpl(
const QString& name,
const QString& uri,
const QString& email);
50 virtual bool isNull()
const {
return m_null; }
51 virtual QString name()
const {
return m_name; }
52 virtual QString uri()
const {
return m_uri; }
53 virtual QString email()
const {
return m_email; }
66 #endif // SYNDICATION_PERSONIMPL_H
This file is part of the KDE documentation.
Documentation copyright © 1996-2013 The KDE developers.
Generated on Tue Nov 26 2013 09:02:40 by
doxygen 1.8.5 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.