window-license-agreement.hpp 231 B

1234567891011121314
  1. #pragma once
  2. #include <memory>
  3. #include "ui_OBSLicenseAgreement.h"
  4. class OBSLicenseAgreement : public QDialog {
  5. Q_OBJECT
  6. private:
  7. std::unique_ptr<Ui::OBSLicenseAgreement> ui;
  8. public:
  9. OBSLicenseAgreement(QWidget *parent);
  10. };