1/*
2 This file is part of the kcalcore library.
3
4 Copyright (c) 2001-2003 Cornelius Schumacher <schumacher@kde.org>
5 Copyright (c) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com>
6 Copyright (c) 2005 Rafal Rzepecki <divide@users.sourceforge.net>
7 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
8 Contact: Alvaro Manera <alvaro.manera@nokia.com>
9
10 This library is free software; you can redistribute it and/or
11 modify it under the terms of the GNU Library General Public
12 License as published by the Free Software Foundation; either
13 version 2 of the License, or (at your option) any later version.
14
15 This library is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Library General Public License for more details.
19
20 You should have received a copy of the GNU Library General Public License
21 along with this library; see the file COPYING.LIB. If not, write to
22 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 Boston, MA 02110-1301, USA.
24*/
25
26#include "visitor.h"
27#include "event.h"
28#include "todo.h"
29#include "journal.h"
30#include "freebusy.h"
31
32using namespace KCalCore;
33
34Visitor::Visitor()
35{
36}
37
38Visitor::~Visitor()
39{
40}
41
42bool Visitor::visit(Event::Ptr event)
43{
44 Q_UNUSED(event);
45 return false;
46}
47
48bool Visitor::visit(Todo::Ptr todo)
49{
50 Q_UNUSED(todo);
51 return false;
52}
53
54bool Visitor::visit(Journal::Ptr journal)
55{
56 Q_UNUSED(journal);
57 return false;
58}
59
60bool Visitor::visit(FreeBusy::Ptr freebusy)
61{
62 Q_UNUSED(freebusy);
63 return false;
64}
65