File indexing completed on 2024-03-24 15:42:43

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 "specificitemvisitor.h"
0009 #include "specificitem.h"
0010 
0011 namespace Syndication
0012 {
0013 SpecificItemVisitor::~SpecificItemVisitor()
0014 {
0015 }
0016 
0017 bool SpecificItemVisitor::visit(SpecificItem *item)
0018 {
0019     return item->accept(this);
0020 }
0021 
0022 bool SpecificItemVisitor::visitRSS2Item(Syndication::RSS2::Item *)
0023 {
0024     return false;
0025 }
0026 
0027 bool SpecificItemVisitor::visitRDFItem(Syndication::RDF::Item *)
0028 {
0029     return false;
0030 }
0031 
0032 bool SpecificItemVisitor::visitAtomEntry(Syndication::Atom::Entry *)
0033 {
0034     return false;
0035 }
0036 
0037 } // namespace Syndication