KCal Library
imipscheduler.cpp
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #include "imipscheduler.h"
00027 #include "event.h"
00028 #include "icalformat.h"
00029
00030 using namespace KCal;
00031
00032 IMIPScheduler::IMIPScheduler( Calendar *calendar )
00033 : Scheduler( calendar ), d( 0 )
00034 {
00035 }
00036
00037 IMIPScheduler::~IMIPScheduler()
00038 {
00039 }
00040
00041 bool IMIPScheduler::publish ( IncidenceBase *incidence, const QString &recipients )
00042 {
00043 Q_UNUSED( incidence );
00044 Q_UNUSED( recipients );
00045 return false;
00046 }
00047
00048 bool IMIPScheduler::performTransaction( IncidenceBase *incidence, iTIPMethod method )
00049 {
00050 mFormat->createScheduleMessage( incidence, method );
00051
00052 return false;
00053 }
00054
00055 QList<ScheduleMessage*> IMIPScheduler::retrieveTransactions()
00056 {
00057 QList<ScheduleMessage*> messageList;
00058
00059 return messageList;
00060 }