KCalCore Library
#include <visitor.h>
Public Member Functions | |
virtual | ~Visitor () |
virtual bool | visit (Event::Ptr event) |
virtual bool | visit (Todo::Ptr todo) |
virtual bool | visit (Journal::Ptr journal) |
virtual bool | visit (FreeBusy::Ptr freebusy) |
Protected Member Functions | |
Visitor () | |
Detailed Description
This class provides the interface for a visitor of calendar components.
It serves as base class for concrete visitors, which implement certain actions on calendar components. It allows to add functions, which operate on the concrete types of calendar components, without changing the calendar component classes.
Constructor & Destructor Documentation
|
virtual |
Destruct Incidence::Visitor.
Definition at line 38 of file visitor.cpp.
|
protected |
Constructor is protected to prevent direct creation of visitor base class.
Definition at line 34 of file visitor.cpp.
Member Function Documentation
|
virtual |
Reimplement this function in your concrete subclass of IncidenceBase::Visitor to perform actions on an Event object.
- Parameters
-
event is a pointer to a valid Event object.
Definition at line 42 of file visitor.cpp.
|
virtual |
Reimplement this function in your concrete subclass of IncidenceBase::Visitor to perform actions on a Todo object.
- Parameters
-
todo is a pointer to a valid Todo object.
Definition at line 48 of file visitor.cpp.
|
virtual |
Reimplement this function in your concrete subclass of IncidenceBase::Visitor to perform actions on an Journal object.
- Parameters
-
journal is a pointer to a valid Journal object.
Definition at line 54 of file visitor.cpp.
|
virtual |
Reimplement this function in your concrete subclass of IncidenceBase::Visitor to perform actions on a FreeBusy object.
- Parameters
-
freebusy is a pointer to a valid FreeBusy object.
Definition at line 60 of file visitor.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 22:59:58 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.