This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-03-26 14:32:43 +02:00

17 lines
233 B
C++

#ifndef CALENDARITEM_H
#define CALENDARITEM_H
#include <QObject>
class CalendarItem : public QObject
{
Q_OBJECT
public:
explicit CalendarItem(QObject *parent = nullptr);
signals:
public slots:
};
#endif // CALENDARITEM_H