3
0

AtomToolsMainWindowSystemComponent.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #include <AzCore/Component/Component.h>
  10. namespace AtomToolsFramework
  11. {
  12. //! AtomToolsMainWindowSystemComponent is used for initialization and registration of other classes.
  13. class AtomToolsMainWindowSystemComponent
  14. : public AZ::Component
  15. {
  16. public:
  17. AZ_COMPONENT(AtomToolsMainWindowSystemComponent, "{6E42380B-4ECD-47CF-B904-E16AB4E87D0D}");
  18. static void Reflect(AZ::ReflectContext* context);
  19. static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided);
  20. static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible);
  21. private:
  22. ////////////////////////////////////////////////////////////////////////
  23. // AZ::Component interface implementation
  24. void Init() override;
  25. void Activate() override;
  26. void Deactivate() override;
  27. ////////////////////////////////////////////////////////////////////////
  28. };
  29. }