syndication/rdf
literal.h
00001 /* 00002 * This file is part of the syndication library 00003 * 00004 * Copyright (C) 2006 Frank Osterfeld <osterfeld@kde.org> 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Library General Public 00008 * License as published by the Free Software Foundation; either 00009 * version 2 of the License, or (at your option) any later version. 00010 * 00011 * This library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Library General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Library General Public License 00017 * along with this library; see the file COPYING.LIB. If not, write to 00018 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00019 * Boston, MA 02110-1301, USA. 00020 * 00021 */ 00022 00023 #ifndef SYNDICATION_RDF_LITERAL_H 00024 #define SYNDICATION_RDF_LITERAL_H 00025 00026 #include <QtCore/QString> 00027 #include <syndication/rdf/node.h> 00028 00029 #include <boost/shared_ptr.hpp> 00030 00031 namespace Syndication { 00032 namespace RDF { 00033 00034 class Literal; 00035 00036 //@cond PRIVATE 00037 typedef boost::shared_ptr<Literal> LiteralPtr; 00038 //@endcond 00039 00044 class SYNDICATION_EXPORT Literal : public Node 00045 { 00046 public: 00047 00051 Literal(); 00052 00058 Literal(const Literal& other); 00059 00065 explicit Literal(const QString& text); 00066 00070 virtual ~Literal(); 00071 00077 virtual Literal& operator=(const Literal& other); 00078 00083 virtual bool operator==(const Node& other) const; 00084 00088 virtual Literal* clone() const; 00089 00096 virtual void accept( NodeVisitor* visitor, NodePtr ptr); 00097 00101 virtual bool isNull() const; 00102 00107 virtual unsigned int id() const; 00108 00112 virtual bool isResource() const; 00116 virtual bool isProperty() const; 00117 00121 virtual bool isLiteral() const; 00122 00126 virtual bool isAnon() const; 00127 00131 virtual bool isSequence() const; 00132 00136 virtual operator QString() const; 00137 00141 virtual QString text() const; 00142 00147 virtual void setModel(const Model& model); 00148 00153 virtual void setId(unsigned int id); 00154 00155 private: 00156 class LiteralPrivate; 00157 typedef boost::shared_ptr<LiteralPrivate> LiteralPrivatePtr; 00158 LiteralPrivatePtr d; 00159 }; 00160 00161 00162 } // namespace RDF 00163 } // namespace Syndication 00164 00165 #endif // SYNDICATION_RDF_LITERAL_H
This file is part of the KDE documentation.
Documentation copyright © 1996-2012 The KDE developers.
Generated on Thu May 10 2012 22:17:52 by doxygen 1.8.0 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2012 The KDE developers.
Generated on Thu May 10 2012 22:17:52 by doxygen 1.8.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.