/* * This file is part of the syndication library * * Copyright (C) 2006 Frank Osterfeld * * 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. * */ #include "literal.h" #include "nodevisitor.h" #include namespace Syndication { namespace RDF { class Literal::LiteralPrivate { public: QString text; unsigned int id; bool operator==(const LiteralPrivate& other) const { return text == other.text; } }; Literal::Literal() : d() { } Literal::Literal(const Literal& other) : Node(other) { d = other.d; } Literal* Literal::clone() const { return new Literal(*this); } void Literal::accept(NodeVisitor* visitor, NodePtr ptr) { LiteralPtr lptr = boost::static_pointer_cast(ptr); if (!visitor->visitLiteral(lptr)) Node::accept(visitor, ptr); } Literal::Literal(const QString& text) : d(new LiteralPrivate) { d->text = text; d->id = idCounter++; } Literal::~Literal() { } Literal& Literal::operator=(const Literal& other) { d = other.d; return *this; } bool Literal::operator==(const Node& other) const { const Literal* o2 = dynamic_cast(&other); if (!o2) return false; if (!d || !o2->d) return d == o2->d; return *d == *(o2->d); } bool Literal::isNull() const { return !d; } unsigned int Literal::id() const { return d ? d->id : 0; } bool Literal::isResource() const { return false; } bool Literal::isProperty() const { return false; } bool Literal::isLiteral() const { return true; } bool Literal::isAnon() const { return false; } bool Literal::isSequence() const { return false; } QString Literal::text() const { return d ? d->text : QString(); } Literal::operator QString() const { return d ? d->text : QString(); } void Literal::setModel(const Model& /*model*/) { } void Literal::setId(unsigned int id) { d->id = id; } } // namespace RDF } // namespace Syndication