Blame view

VideoWidget.h 196 Bytes
3f2992b2c   bostx   V1.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  #ifndef VIDEOWIDGET_H
  #define VIDEOWIDGET_H
  
  #include <QVideoWidget>
  
  class VideoWidget: public QVideoWidget
  {
   public:
    VideoWidget(QWidget *parent = 0);
    ~VideoWidget();
  
   private:
  };
  
  #endif