author | Michael Krelin <hacker@klever.net> | 2007-07-04 11:23:42 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-07-04 11:23:42 (UTC) |
commit | a08aff328d4393031d5ba7d622c2b05705a89d73 (patch) (unidiff) | |
tree | 8ee90d686081c52e7c69b5ce946e9b1a7d690001 /libkcal/dummyscheduler.h | |
parent | 11edc920afe4f274c0964436633aa632c8288a40 (diff) | |
download | kdepimpi-p1.zip kdepimpi-p1.tar.gz kdepimpi-p1.tar.bz2 |
initial public commit of qt4 portp1
-rw-r--r-- | libkcal/dummyscheduler.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libkcal/dummyscheduler.h b/libkcal/dummyscheduler.h index df42153..f86d583 100644 --- a/libkcal/dummyscheduler.h +++ b/libkcal/dummyscheduler.h | |||
@@ -1,51 +1,53 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of libkcal. | 2 | This file is part of libkcal. |
3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This library is free software; you can redistribute it and/or | 5 | This library is free software; you can redistribute it and/or |
6 | modify it under the terms of the GNU Library General Public | 6 | modify it under the terms of the GNU Library General Public |
7 | License as published by the Free Software Foundation; either | 7 | License as published by the Free Software Foundation; either |
8 | version 2 of the License, or (at your option) any later version. | 8 | version 2 of the License, or (at your option) any later version. |
9 | 9 | ||
10 | This library is distributed in the hope that it will be useful, | 10 | This library is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | Library General Public License for more details. | 13 | Library General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU Library General Public License | 15 | You should have received a copy of the GNU Library General Public License |
16 | along with this library; see the file COPYING.LIB. If not, write to | 16 | along with this library; see the file COPYING.LIB. If not, write to |
17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
18 | Boston, MA 02111-1307, USA. | 18 | Boston, MA 02111-1307, USA. |
19 | */ | 19 | */ |
20 | #ifndef DUMMYSCHEDULER_H | 20 | #ifndef DUMMYSCHEDULER_H |
21 | #define DUMMYSCHEDULER_H | 21 | #define DUMMYSCHEDULER_H |
22 | // | 22 | // |
23 | // Dummy implementation of iTIP methods | 23 | // Dummy implementation of iTIP methods |
24 | // | 24 | // |
25 | 25 | ||
26 | #include "scheduler.h" | 26 | #include "scheduler.h" |
27 | //Added by qt3to4: | ||
28 | #include <Q3PtrList> | ||
27 | 29 | ||
28 | namespace KCal { | 30 | namespace KCal { |
29 | 31 | ||
30 | /** | 32 | /** |
31 | This class implements the iTIP interface as a primitive local version for | 33 | This class implements the iTIP interface as a primitive local version for |
32 | testing. It uses a file dummyscheduler.store as inbox/outbox. | 34 | testing. It uses a file dummyscheduler.store as inbox/outbox. |
33 | */ | 35 | */ |
34 | class DummyScheduler : public Scheduler { | 36 | class DummyScheduler : public Scheduler { |
35 | public: | 37 | public: |
36 | DummyScheduler(Calendar *); | 38 | DummyScheduler(Calendar *); |
37 | virtual ~DummyScheduler(); | 39 | virtual ~DummyScheduler(); |
38 | 40 | ||
39 | bool publish (IncidenceBase *incidence,const QString &recipients); | 41 | bool publish (IncidenceBase *incidence,const QString &recipients); |
40 | bool performTransaction(IncidenceBase *incidence,Method method); | 42 | bool performTransaction(IncidenceBase *incidence,Method method); |
41 | bool performTransaction(IncidenceBase *incidence,Method method,const QString &recipients); | 43 | bool performTransaction(IncidenceBase *incidence,Method method,const QString &recipients); |
42 | QPtrList<ScheduleMessage> retrieveTransactions(); | 44 | Q3PtrList<ScheduleMessage> retrieveTransactions(); |
43 | 45 | ||
44 | protected: | 46 | protected: |
45 | bool saveMessage(const QString &); | 47 | bool saveMessage(const QString &); |
46 | }; | 48 | }; |
47 | 49 | ||
48 | } | 50 | } |
49 | 51 | ||
50 | #endif // DUMMYSCHEDULER_H | 52 | #endif // DUMMYSCHEDULER_H |
51 | 53 | ||