mailscheduler.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef MAILSCHEDULER_H
00024 #define MAILSCHEDULER_H
00025
00026
00027
00028
00029 #include <qptrlist.h>
00030 #include <qmap.h>
00031 #include <qstring.h>
00032
00033 #include <libkcal/imipscheduler.h>
00034
00035 namespace KCal {
00036
00037
00038
00039
00040
00041 class MailScheduler : public IMIPScheduler {
00042 public:
00043 MailScheduler(Calendar *);
00044 virtual ~MailScheduler();
00045
00046 bool publish (IncidenceBase *incidence,const QString &recipients);
00047 bool performTransaction(IncidenceBase *incidence,Method method);
00048 bool performTransaction(IncidenceBase *incidence,Method method,const QString &recipients);
00049 QPtrList<ScheduleMessage> retrieveTransactions();
00050
00051 bool deleteTransaction(IncidenceBase *incidence);
00052
00054 virtual QString freeBusyDir();
00055
00056 private:
00057 QMap<IncidenceBase*, QString> mEventMap;
00058 };
00059
00060 }
00061
00062 #endif
This file is part of the documentation for korganizer Library Version 3.2.2.