CmEditorPrerequisites.h 639 B

1234567891011121314151617181920212223242526272829
  1. #pragma once
  2. #include "CmPrerequisites.h"
  3. using namespace CamelotFramework; // Not great design, but I'm just using namespaces to make the distinction between engine and editor cleaner so its fine
  4. namespace CamelotEditor
  5. {
  6. class LayoutManager;
  7. class EditorPrefs;
  8. class EditorApplication;
  9. class ProjectPrefs;
  10. class QtEditor;
  11. class QtDockOverlayWidget;
  12. class EditorWidgetFactory;
  13. class QtEditorWindow;
  14. class QtEditorWidget;
  15. class QtDynamicTabBar;
  16. class QtTabButton;
  17. }
  18. // Qt
  19. class QWidget;
  20. class QLabel;
  21. class QPushButton;
  22. class QSplitter;
  23. class QStackedWidget;
  24. class QHBoxLayout;
  25. class QVBoxLayout;