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