派生自 development/c++

pansen
2019-01-28 8bfd4cc90f25f1800eb5e61d50d4fa74854e0f2a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef ENCODEVIDEOMANAGER_H
#define ENCODEVIDEOMANAGER_H
#include <basic/pipe/TimerElement.h>
#include "EncodeVideo.h"
 
class EncodeVideoManager: public TimerElement
{
public:
    EncodeVideoManager();
   ~EncodeVideoManager();
private:
    virtual void timerFunc();
 
private:
   HiredisTool m_hiredisTool;
   std::vector<EncodeVideo*> m_newEncodeVideoVec;
 
};
 
#endif // NEWENCODEVIDEOMANAGER_H