#ifndef CALENDARPAGE_H #define CALENDARPAGE_H #include "../page.h" #include "calendarCourse.h" #include #include //strlen and strtok to phrase the html file #include //checks if character is numeric class CalendarPage : public Page { public: CalendarPage(std::string html); std::string htmlToString(); std::list* getCourses() { return courses; } private: std::string tokenToLines(std::string& textToPhrase); void calendarListInit(std::string& linesTokinzedString); calendarCourse* lineToCourse(std::string line); std::string tempHtml; std::list* courses; }; #endif // CALENDARPAGE_H