Go to the documentation of this file.00001
00011 #include <rmscpp/content/content_pages/content_page.h>
00012
00013 using namespace std;
00014 using namespace rms;
00015
00016 content_page::content_page(int pageid, std::string title, std::string menu, int index, std::string js)
00017 {
00018
00019 this->pageid = pageid;
00020 this->title = title;
00021 this->menu = menu;
00022 this->index = index;
00023 this->js = js;
00024 }
00025
00026 int content_page::get_pageid()
00027 {
00028 return pageid;
00029 }
00030
00031 string content_page::get_title()
00032 {
00033 return title;
00034 }
00035
00036 string content_page::get_menu()
00037 {
00038 return menu;
00039 }
00040
00041 int content_page::get_index()
00042 {
00043 return index;
00044 }
00045
00046 std::string content_page::get_js()
00047 {
00048 return js;
00049 }