freebusyurlstore.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef KCAL_FREEBUSYURLSTORE_H
00022 #define KCAL_FREEBUSYURLSTORE_H
00023
00024 #include <qstring.h>
00025
00026 class KConfig;
00027
00028 namespace KCal {
00029
00030 class FreeBusyUrlStore
00031 {
00032 public:
00033 static FreeBusyUrlStore *self();
00034 ~FreeBusyUrlStore();
00035
00036 void writeUrl( const QString &email, const QString &url );
00037
00038 QString readUrl( const QString &email );
00039
00040 void sync();
00041
00042 private:
00043 FreeBusyUrlStore();
00044
00045 static FreeBusyUrlStore *mSelf;
00046
00047 KConfig *mConfig;
00048 };
00049
00050 }
00051
00052 #endif
This file is part of the documentation for libkcal Library Version 3.3.2.