2014-08-31 09:33:27 +00:00
|
|
|
#include "CalendarManager.h"
|
|
|
|
|
2014-09-01 22:19:24 +00:00
|
|
|
CalendarManager::CalendarManager(calendarSchedule *ptr)
|
2014-08-31 09:33:27 +00:00
|
|
|
{
|
2014-09-01 22:19:24 +00:00
|
|
|
this->caliSchedPtr = ptr;
|
2014-08-31 09:33:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CalendarManager::setCalendar(std::string html)
|
|
|
|
{
|
2014-09-01 22:19:24 +00:00
|
|
|
caliSchedPtr->setPage(html);
|
2014-08-31 09:33:27 +00:00
|
|
|
}
|