00001 00011 #ifndef SLIDE_H_ 00012 #define SLIDE_H_ 00013 00014 #include <string> 00015 00020 namespace rms 00021 { 00028 class slide 00029 { 00030 public: 00039 slide(int slideid, std::string img, std::string caption, int index); 00040 00046 int get_slideid(); 00052 std::string get_img(); 00058 std::string get_caption(); 00064 int get_index(); 00065 00066 private: 00067 int slideid, index; 00068 std::string img, caption; 00069 }; 00070 } 00071 00072 #endif