95ccaa39d0
bug fixes, better phrasing, calendar option
24 lines
413 B
C++
24 lines
413 B
C++
#ifndef CALENDARMANAGER_H
|
|
#define CALENDARMANAGER_H
|
|
|
|
#include "./src/jceData/Calendar/calendarPage.h"
|
|
#include <iostream>
|
|
|
|
#include <QPlainTextEdit>
|
|
|
|
class CalendarManager
|
|
{
|
|
public:
|
|
CalendarManager(QPlainTextEdit *ptr);
|
|
~CalendarManager()
|
|
{
|
|
delete cali;
|
|
}
|
|
|
|
void setCalendar(std::string html);
|
|
private:
|
|
QPlainTextEdit * ptr;
|
|
CalendarPage * cali;
|
|
};
|
|
|
|
#endif // CALENDARMANAGER_H
|