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 __FILL_HPP__
00040 #define __FILL_HPP__
00041
00042 #include <boost/thread/thread.hpp>
00043 #include "mjpg.hpp"
00044 #include "mjpgdisk.hpp"
00045 #include "tempo.hpp"
00046 #include <vector>
00047
00048 namespace ipsi
00049 {
00051 typedef std::vector<unsigned char> buffer_t;
00052
00057 template<class T>
00058 class fill_data
00059 {
00060 public :
00070 bool operator()( boost::mutex& mut ,
00071 buffer_t& buf ,
00072 T* flux);
00073 };
00074
00075 #include "fill.impl.hpp"
00076
00077 }
00078
00079 #endif