Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00029 #ifndef MKCAL_TRACKERMODIFY_H
00030 #define MKCAL_TRACKERMODIFY_H
00031
00032 #include "mkcal_export.h"
00033 #include "extendedstorage.h"
00034
00035 #include <incidence.h>
00036
00037 namespace mKCal {
00038
00045 class MKCAL_EXPORT TrackerModify
00046 {
00047 public:
00051 TrackerModify();
00052
00056 virtual ~TrackerModify();
00057
00065 bool queries( const KCalCore::Incidence::Ptr &incidence, DBOperation dbop,
00066 QStringList &insertQuery, QStringList &deleteQuery, const QString ¬ebook );
00067
00075 bool notifyOpen( const KCalCore::Incidence::Ptr &incidence, QStringList &query );
00076
00077 private:
00078
00079 Q_DISABLE_COPY( TrackerModify )
00080 class MKCAL_HIDE Private;
00081 Private *const d;
00082
00083 };
00084
00085 }
00086
00087 #endif