Blame view

VideoWidget.cpp 234 Bytes
3f2992b2c   bostx   V1.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  #include "VideoWidget.h"
  
  /////////////////
  // constructor //
  /////////////////
  
  VideoWidget::VideoWidget(QWidget *parent): QVideoWidget(parent)
  {
  }
  
  ////////////////
  // destructor //
  ////////////////
  
  VideoWidget::~VideoWidget()
  {
  }