4fa27283d9
This reverts commit cd43b26d50
.
16 lines
290 B
C++
16 lines
290 B
C++
#include "CalendarManager.h"
|
|
|
|
CalendarManager::CalendarManager(calendarSchedule *ptr)
|
|
{
|
|
this->caliSchedPtr = ptr;
|
|
}
|
|
|
|
void CalendarManager::setCalendar(std::string html)
|
|
{
|
|
caliSchedPtr->setPage(html);
|
|
}
|
|
|
|
calendarSchedule *CalendarManager::getSch()
|
|
{
|
|
return this->caliSchedPtr;
|
|
}
|