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 __MJPGDISK_HPP__ 00040 #define __MJPGDISK_HPP__ 00041 00042 #include <list> 00043 #include <iostream> 00044 #include <stdio.h> 00045 00046 #include "object.hpp" 00047 00048 namespace ipsi 00049 { 00057 class MjpgDisk : public Object 00058 { 00059 private: 00061 unsigned int mNb; 00063 std::list<std::string> names; 00064 00065 public: 00072 MjpgDisk( Param* param ); 00073 00077 virtual ~MjpgDisk(){}; 00078 00083 virtual typeObject getType() const; 00084 00089 std::string giveName(); 00090 00095 std::list<std::string> genFileName(); 00096 00101 unsigned char* recup(); 00102 }; 00103 00104 } 00105 #endif // __MJPGDISK_HPP__