summaryrefslogtreecommitdiff
path: root/libopie2/opiepim/ui/oholidayplugin.h
blob: f4958c8b15a96fd31422bcf656d7fba558374bc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _HOLIDAY_PLUGIN_H
#define _HOLIDAY_PLUGIN_H

namespace Opie {
namespace Datebook {

#include <qstring.h>
#include <qstringlist.h>
#include <qdate.h>

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;
};

}
}
#endif