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.

ovdCAboutScenarioDialog.h 561B

123456789101112131415161718192021222324252627
  1. #pragma once
  2. #include "ovd_base.h"
  3. namespace OpenViBE {
  4. namespace Designer {
  5. class CAboutScenarioDialog final
  6. {
  7. public:
  8. CAboutScenarioDialog(const Kernel::IKernelContext& ctx, Kernel::IScenario& scenario, const char* guiFilename)
  9. : m_kernelCtx(ctx), m_scenario(scenario), m_guiFilename(guiFilename) { }
  10. ~CAboutScenarioDialog() = default;
  11. bool run();
  12. protected:
  13. const Kernel::IKernelContext& m_kernelCtx;
  14. Kernel::IScenario& m_scenario;
  15. CString m_guiFilename;
  16. CAboutScenarioDialog() = delete;
  17. };
  18. } // namespace Designer
  19. } // namespace OpenViBE