author | alwin <alwin> | 2005-03-16 16:08:57 (UTC) |
---|---|---|
committer | alwin <alwin> | 2005-03-16 16:08:57 (UTC) |
commit | 829995787660e9786269c4cd4e2626825472e9cd (patch) (unidiff) | |
tree | 5caad6e88987993c7c35775598b7c2bbbecec262 | |
parent | d119025a69177c373d75d3fe5936e2319bb4455b (diff) | |
download | opie-829995787660e9786269c4cd4e2626825472e9cd.zip opie-829995787660e9786269c4cd4e2626825472e9cd.tar.gz opie-829995787660e9786269c4cd4e2626825472e9cd.tar.bz2 |
forgot an interface method required.
from now the interface never changed again or assigned UUID must changed.
-rw-r--r-- | libopie2/opiepim/ui/oholidayplugin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libopie2/opiepim/ui/oholidayplugin.h b/libopie2/opiepim/ui/oholidayplugin.h index 50dfe13..2e8c09e 100644 --- a/libopie2/opiepim/ui/oholidayplugin.h +++ b/libopie2/opiepim/ui/oholidayplugin.h | |||
@@ -1,24 +1,26 @@ | |||
1 | #ifndef _HOLIDAY_PLUGIN_H | 1 | #ifndef _HOLIDAY_PLUGIN_H |
2 | #define _HOLIDAY_PLUGIN_H | 2 | #define _HOLIDAY_PLUGIN_H |
3 | 3 | ||
4 | #include <qstring.h> | 4 | #include <qstring.h> |
5 | #include <qstringlist.h> | 5 | #include <qstringlist.h> |
6 | #include <qdatetime.h> | 6 | #include <qdatetime.h> |
7 | #include <qmap.h> | ||
7 | 8 | ||
8 | namespace Opie { | 9 | namespace Opie { |
9 | namespace Datebook { | 10 | namespace Datebook { |
10 | 11 | ||
11 | class HolidayPlugin | 12 | class HolidayPlugin |
12 | { | 13 | { |
13 | public: | 14 | public: |
14 | HolidayPlugin(){}; | 15 | HolidayPlugin(){}; |
15 | virtual ~HolidayPlugin(){}; | 16 | virtual ~HolidayPlugin(){}; |
16 | virtual QString description()=0; | 17 | virtual QString description()=0; |
17 | virtual QStringList entries(const QDate&)=0; | 18 | virtual QStringList entries(const QDate&)=0; |
18 | virtual QStringList entries(unsigned year, unsigned month, unsigned day)=0; | 19 | virtual QStringList entries(unsigned year, unsigned month, unsigned day)=0; |
20 | virtual QMap<QDate,QStringList> entries(const QDate&,const QDate&)=0; | ||
19 | }; | 21 | }; |
20 | 22 | ||
21 | } | 23 | } |
22 | } | 24 | } |
23 | #endif | 25 | #endif |
24 | 26 | ||