KCal Library
#include <comparisonvisitor.h>
Public Member Functions | |
ComparisonVisitor () | |
virtual | ~ComparisonVisitor () |
bool | compare (IncidenceBase *incidence, const IncidenceBase *reference) |
virtual bool | visit (Event *event) |
virtual bool | visit (Todo *todo) |
virtual bool | visit (Journal *journal) |
virtual bool | visit (FreeBusy *freebusy) |
Public Member Functions inherited from KCal::IncidenceBase::Visitor | |
virtual | ~Visitor () |
Additional Inherited Members | |
Protected Member Functions inherited from KCal::IncidenceBase::Visitor | |
Visitor () | |
Detailed Description
Helper for type correct comparison of incidences via pointers.
This class provides a way of correctly comparing one incidence to another, given two IncidenceBase derived pointers. It effectively provides a virtual comparison method which first type checks the two pointers to ensure they reference the same incidence type, before performing the comparison.
Usage example:
- Since
- 4.3
Definition at line 53 of file comparisonvisitor.h.
Constructor & Destructor Documentation
ComparisonVisitor::ComparisonVisitor | ( | ) |
Creates a visitor instance.
Definition at line 37 of file comparisonvisitor.cpp.
|
virtual |
Destroys the instance.
Definition at line 41 of file comparisonvisitor.cpp.
Member Function Documentation
bool ComparisonVisitor::compare | ( | IncidenceBase * | incidence, |
const IncidenceBase * | reference | ||
) |
Compares the incidence referenced by incidence
to the incidence referenced by reference
.
Returns true, if the incidence referenced by incidence
is identical to the incidence referenced by reference
. Also returns true, if incidence
and reference
are both 0
.
Basically it is a virtual equivalent of
- Parameters
-
incidence pointer to the incidence to compare with the reference incidence reference pointer to the reference incidence
- Returns
true
if the two incidences are identical or both0
Definition at line 46 of file comparisonvisitor.cpp.
|
virtual |
Compares the event referenced by event
to the incidence passed to compare().
- Returns
true
if the event is identical to the reference incidence
Reimplemented from KCal::IncidenceBase::Visitor.
Definition at line 57 of file comparisonvisitor.cpp.
|
virtual |
Compares the todo referenced by todo
to the incidence passed to compare().
- Returns
true
if the todo is identical to the reference incidence
Reimplemented from KCal::IncidenceBase::Visitor.
Definition at line 70 of file comparisonvisitor.cpp.
|
virtual |
Compares the journal referenced by journal
to the incidence passed to compare().
- Returns
true
if the journal is identical to the reference incidence
Reimplemented from KCal::IncidenceBase::Visitor.
Definition at line 83 of file comparisonvisitor.cpp.
|
virtual |
Compares the freebusy object referenced by freebusy
to the incidence passed to compare().
- Returns
true
if the freebusy object is identical to the reference incidence
Reimplemented from KCal::IncidenceBase::Visitor.
Definition at line 96 of file comparisonvisitor.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 23:00:58 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.