You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
400 B
27 lines
400 B
#ifndef FRMVIDEOWINDOW_H
|
|
#define FRMVIDEOWINDOW_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class frmVideoWindow;
|
|
}
|
|
|
|
class frmVideoWindow : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit frmVideoWindow(QWidget *parent = 0);
|
|
~frmVideoWindow();
|
|
|
|
private:
|
|
Ui::frmVideoWindow *ui;
|
|
|
|
private slots:
|
|
void initForm();
|
|
void btnClicked(const QString &objName);
|
|
};
|
|
|
|
#endif // FRMVIDEOWINDOW_H
|