mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-03-27 19:02:02 -04:00
21 lines
365 B
C++
21 lines
365 B
C++
#pragma once
|
|
|
|
#include <QWizardPage>
|
|
|
|
class Ui_AutoConfigVideoPage;
|
|
|
|
class AutoConfigVideoPage : public QWizardPage {
|
|
Q_OBJECT
|
|
|
|
friend class AutoConfig;
|
|
|
|
std::unique_ptr<Ui_AutoConfigVideoPage> ui;
|
|
|
|
public:
|
|
AutoConfigVideoPage(QWidget *parent = nullptr);
|
|
~AutoConfigVideoPage();
|
|
|
|
virtual int nextId() const override;
|
|
virtual bool validatePage() override;
|
|
};
|