00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 #ifndef __CONSTRUCTEUR_HPP__ 00040 #define __CONSTRUCTEUR_HPP__ 00041 00042 #include <string> 00043 00044 namespace ipsi 00045 { 00049 enum marqueCam 00050 { 00051 AXIS, 00052 DLINK, 00053 PANA 00054 }; 00055 00065 class Constr 00066 { 00067 public : 00068 // Attributs 00069 00071 marqueCam mark ; 00072 00074 int html_heading ; 00076 int jpeg_heading ; 00078 int heading_end ; 00080 int boundary ; 00081 00083 std::string requete_mjpg, 00085 requete_2, 00087 requete_3 ; 00088 00090 std::string requete_compression ; 00091 00093 std::string requete_cmd; 00094 00096 int resp_heading_size, 00098 resp_heading, 00100 resp_heading_end; 00102 std::string resp_heading_mess; 00103 00104 00105 std::string cmd_center ; 00106 std::string cmd_left ; 00107 std::string cmd_right ; 00108 std::string cmd_up ; 00109 std::string cmd_down ; 00110 std::string cmd_zoomin ; 00111 std::string cmd_zoomout ; 00112 00113 //Fonctions / méthodes 00114 00122 virtual marqueCam getMark() const = 0; 00123 00127 virtual ~Constr() {}; 00128 }; 00129 } 00130 #endif