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
26
| /*
| * frames.h
| *
| * Created on: 2021Äê11ÔÂ2ÈÕ
| * Author: graydon
| */
|
| #ifndef FRAMES_H_
| #define FRAMES_H_
| #include <vector>
| #include "frame.hpp"
|
|
| class Frames
| {
| private:
| std::vector<Frame*> dataFrame;
| public:
| Frames();
| Frames(int num);
| ~Frames();
| Frame* AllocFrame();
| Frame* GetFrame(int channel);
| };
|
| #endif /* FRAMES_H_ */
|
|