${Name}FeatureProcessorInterface.h 799 B

1234567891011121314151617181920212223242526272829
  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/base.h>
  10. #include <Atom/RPI.Public/FeatureProcessor.h>
  11. namespace ${SanitizedCppName}
  12. {
  13. class ${SanitizedCppName};
  14. using ${SanitizedCppName}Handle = AZStd::shared_ptr<${SanitizedCppName}>;
  15. // ${Name}FeatureProcessorInterface provides an interface to the feature processor for code outside of Atom
  16. class ${SanitizedCppName}FeatureProcessorInterface
  17. : public AZ::RPI::FeatureProcessor
  18. {
  19. public:
  20. AZ_RTTI(${SanitizedCppName}FeatureProcessorInterface, "{${Random_Uuid}}", AZ::RPI::FeatureProcessor);
  21. };
  22. }