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
|
|
|
}
|
|
|
|
|
2014-09-08 14:30:18 +00:00
|
|
|
void CalendarManager::setCalendar(std::string html)
|
2014-08-31 09:33:27 +00:00
|
|
|
{
|
2014-09-08 14:30:18 +00:00
|
|
|
caliSchedPtr->setPage(html);
|
2014-08-31 09:33:27 +00:00
|
|
|
}
|
2014-09-07 19:57:01 +00:00
|
|
|
|
2014-09-08 14:30:18 +00:00
|
|
|
calendarSchedule *CalendarManager::getSch()
|
2014-09-07 19:57:01 +00:00
|
|
|
{
|
2014-09-08 14:30:18 +00:00
|
|
|
return this->caliSchedPtr;
|
2014-09-07 19:57:01 +00:00
|
|
|
}
|