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
27
28
| /**
| * 叶海辉
| * QQ群121376426
| * http://blog.yundiantech.com/
| */
|
| #ifndef VIDEOPLAYERCSHH_H
| #define VIDEOPLAYERCSHH_H
|
| #include "VideoPlayer.h"
|
| /**
| * @brief The VideoPlayer class
| * 用到了c++11的语法,需要编译器开启c++11支持
| * 播放器类,纯c++实现,方便移植,与界面的交互通过回调函数的方式实现
| */
|
| class VideoPlayerCSHH : public VideoPlayer
| {
| public:
| VideoPlayerCSHH();
| ~VideoPlayerCSHH();
| private:
| void readVideoFile();
| };
|
|
| #endif // VIDEOPLAYER_H
|
|