KCalCore Library
visitor.cpp
00001 /* 00002 This file is part of the kcalcore library. 00003 00004 Copyright (c) 2001-2003 Cornelius Schumacher <schumacher@kde.org> 00005 Copyright (c) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com> 00006 Copyright (c) 2005 Rafal Rzepecki <divide@users.sourceforge.net> 00007 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. 00008 Contact: Alvaro Manera <alvaro.manera@nokia.com> 00009 00010 This library is free software; you can redistribute it and/or 00011 modify it under the terms of the GNU Library General Public 00012 License as published by the Free Software Foundation; either 00013 version 2 of the License, or (at your option) any later version. 00014 00015 This library is distributed in the hope that it will be useful, 00016 but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 Library General Public License for more details. 00019 00020 You should have received a copy of the GNU Library General Public License 00021 along with this library; see the file COPYING.LIB. If not, write to 00022 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00023 Boston, MA 02110-1301, USA. 00024 */ 00025 00026 #include "visitor.h" 00027 #include "event.h" 00028 #include "todo.h" 00029 #include "journal.h" 00030 #include "freebusy.h" 00031 00032 using namespace KCalCore; 00033 00034 Visitor::Visitor() 00035 { 00036 } 00037 00038 Visitor::~Visitor() 00039 { 00040 } 00041 00042 bool Visitor::visit( Event::Ptr event ) 00043 { 00044 Q_UNUSED( event ); 00045 return false; 00046 } 00047 00048 bool Visitor::visit( Todo::Ptr todo ) 00049 { 00050 Q_UNUSED( todo ); 00051 return false; 00052 } 00053 00054 bool Visitor::visit( Journal::Ptr journal ) 00055 { 00056 Q_UNUSED( journal ); 00057 return false; 00058 } 00059 00060 bool Visitor::visit( FreeBusy::Ptr freebusy ) 00061 { 00062 Q_UNUSED( freebusy ); 00063 return false; 00064 }
This file is part of the KDE documentation.
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon Apr 30 2012 21:48:21 by doxygen 1.8.0 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon Apr 30 2012 21:48:21 by doxygen 1.8.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.