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 __MJPG_HPP__
00040 #define __MJPG_HPP__
00041
00042 #include "connection.hpp"
00043 #include "object.hpp"
00044 #include "camparam.hpp"
00045
00046
00047 namespace ipsi
00048 {
00058 class Mjpg : public Object
00059 {
00060 private:
00062 Connection *c;
00063
00065 Param* mParam;
00066
00067 Caminfo* ci;
00068
00069
00070 public:
00078 Mjpg( Param* param, Caminfo* pCi);
00079
00083 virtual ~Mjpg();
00084
00088 void sendReq();
00089
00093 void recup();
00094
00099 unsigned short getCompression() const;
00100
00105 virtual typeObject getType() const;
00106
00107
00108
00109
00110 };
00111 }
00112 #endif