1/*
2 This file is part of the syndication library
3 SPDX-FileCopyrightText: 2006 Frank Osterfeld <osterfeld@kde.org>
4
5 SPDX-License-Identifier: LGPL-2.0-or-later
6*/
7
8#include "specificitemvisitor.h"
9#include "specificitem.h"
10
11namespace Syndication
12{
13SpecificItemVisitor::~SpecificItemVisitor()
14{
15}
16
17bool SpecificItemVisitor::visit(SpecificItem *item)
18{
19 return item->accept(visitor: this);
20}
21
22bool SpecificItemVisitor::visitRSS2Item(Syndication::RSS2::Item *)
23{
24 return false;
25}
26
27bool SpecificItemVisitor::visitRDFItem(Syndication::RDF::Item *)
28{
29 return false;
30}
31
32bool SpecificItemVisitor::visitAtomEntry(Syndication::Atom::Entry *)
33{
34 return false;
35}
36
37} // namespace Syndication
38

source code of syndication/src/specificitemvisitor.cpp