00001 00011 #ifndef CONTENT_PAGE_H_ 00012 #define CONTENT_PAGE_H_ 00013 00014 #include <string> 00015 00020 namespace rms 00021 { 00028 class content_page 00029 { 00030 public: 00040 content_page(int pageid, std::string title, std::string menu, int index, std::string js); 00041 00047 int get_pageid(); 00053 std::string get_title(); 00059 std::string get_menu(); 00065 int get_index(); 00071 std::string get_js(); 00072 00073 private: 00074 int pageid, index; 00075 std::string title, menu, js; 00076 }; 00077 } 00078 00079 #endif