Go to the documentation of this file.00001
00011 #include <rmscpp/content/slides/slide.h>
00012
00013 using namespace std;
00014 using namespace rms;
00015
00016 slide::slide(int slideid, string img, string caption, int index)
00017 {
00018
00019 this->slideid = slideid;
00020 this->img = img;
00021 this->caption = caption;
00022 this->index = index;
00023 }
00024
00025 int slide::get_slideid()
00026 {
00027 return slideid;
00028 }
00029
00030 string slide::get_img()
00031 {
00032 return img;
00033 }
00034
00035 string slide::get_caption()
00036 {
00037 return caption;
00038 }
00039
00040 int slide::get_index()
00041 {
00042 return index;
00043 }