12345678910111213141516171819202122232425 |
- #ifndef CVideoPlayer_H
- #define CVideoPlayer_H
- #include "VideoPlayer.h"
- class CVideoPlayer : public VideoPlayer
- {
- Q_OBJECT
- public:
- CVideoPlayer(QWidget *parent = nullptr);
- ~CVideoPlayer();
- protected:
-
- void mouseDoubleClickEvent(QMouseEvent *event) override;
- private:
- };
- #endif
|