VideoWidget.h 196 Bytes
#ifndef VIDEOWIDGET_H
#define VIDEOWIDGET_H

#include <QVideoWidget>

class VideoWidget: public QVideoWidget
{
 public:
  VideoWidget(QWidget *parent = 0);
  ~VideoWidget();

 private:
};

#endif