TestAutoGenFunctions.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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/std/string/string.h>
  10. #include <AzCore/std/tuple.h>
  11. #include <ScriptCanvas/Data/NumericData.h>
  12. namespace ScriptCanvasTesting
  13. {
  14. namespace TestAutoGenFunctions
  15. {
  16. float NoArgsReturn();
  17. AZStd::tuple<AZStd::string, bool> ArgsReturnMulti(double input);
  18. AZStd::tuple<AZStd::string, bool> NoArgsReturnMulti();
  19. int MaxReturnByValueInteger(int lhs, int rhs);
  20. const int* MaxReturnByPointerInteger(const int* lhs, const int* rhs);
  21. const int& MaxReturnByReferenceInteger(const int& lhs, const int& rhs);
  22. bool IsPositive(int input);
  23. bool NegateBranchBooleanNoResult(int input);
  24. int NegateBranchNonBooleanWithResult(int input);
  25. } // namespace TestAutoGenFunctions
  26. } // namespace ScriptCanvasTesting
  27. #include "Source/Nodes/TestAutoGenFunctions.generated.h"