CmSceneWindowFactory.h 335 B

1234567891011121314151617
  1. #pragma once
  2. #include "CmEditorPrerequisites.h"
  3. #include <QtCore/QString>
  4. namespace CamelotEditor
  5. {
  6. class SceneWindowFactory
  7. {
  8. public:
  9. QtEditorWindow* create(QWidget* parent) const;
  10. const QString& getWindowName() const;
  11. const QString& getMenuCategory() const;
  12. const QString& getMenuItemName() const;
  13. };
  14. }