PythonCoverageEditorModule.h 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
  3. * its licensors.
  4. *
  5. * For complete copyright and license terms please see the LICENSE at the root of this
  6. * distribution (the "License"). All use of this software is governed by the License,
  7. * or, if provided, by the license below or the license accompanying this file. Do not
  8. * remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
  9. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. *
  11. */
  12. #pragma once
  13. #include <AzCore/Memory/SystemAllocator.h>
  14. #include <AzCore/Module/Module.h>
  15. namespace PythonCoverage
  16. {
  17. class PythonCoverageEditorModule
  18. : public AZ::Module
  19. {
  20. public:
  21. AZ_CLASS_ALLOCATOR_DECL
  22. AZ_RTTI(PythonCoverageEditorModule, "{32C0FFEA-09A7-460F-9257-5BDEF74FCD5B}", AZ::Module);
  23. PythonCoverageEditorModule();
  24. ~PythonCoverageEditorModule();
  25. // PythonCoverageModule ...
  26. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  27. };
  28. } // namespace WhiteBox