author | alwin <alwin> | 2005-03-16 16:08:57 (UTC) |
---|---|---|
committer | alwin <alwin> | 2005-03-16 16:08:57 (UTC) |
commit | 829995787660e9786269c4cd4e2626825472e9cd (patch) (side-by-side diff) | |
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 @@ #ifndef _HOLIDAY_PLUGIN_H #define _HOLIDAY_PLUGIN_H #include <qstring.h> #include <qstringlist.h> #include <qdatetime.h> +#include <qmap.h> namespace Opie { namespace Datebook { class HolidayPlugin { public: HolidayPlugin(){}; virtual ~HolidayPlugin(){}; virtual QString description()=0; virtual QStringList entries(const QDate&)=0; virtual QStringList entries(unsigned year, unsigned month, unsigned day)=0; + virtual QMap<QDate,QStringList> entries(const QDate&,const QDate&)=0; }; } } #endif |