blob: a218dd704ae4bfbcdf187697f7a4a7e05f59065e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef MICRO_KCAL_CALENDARRESOURCES_H
#define MICRO_KCAL_CALENDARRESOURCES_H
#include "calendar.h"
#include "resourcecalendar.h"
namespace KCal {
class CalendarResources : public Calendar
{
public:
CalendarResourceManager *resourceManager() { return 0; }
};
}
#endif
|