1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| #ifndef CUT_MANAGE_H
| #define CUT_MANAGE_H
|
| #include "taskmanage.h"
| #include "dispathdatatype.hpp"
|
|
| class cutManage : public TaskManage<getCutFileManage, pfinishCutFileManage> {
| public:
| // cutManage();
| cutManage(LDBTool *dbTool);
|
| ~cutManage();
|
| getCutFileManage getTask(void);
|
| bool finishTask(const pfinishCutFileManage finishInfo);
|
| private:
| void init(void);
|
| std::list<Record_Cut_Video_info> m_list;
| };
|
| #endif
|
|