Printers.h 773 B

12345678910111213141516171819202122232425262728293031
  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. #include <iosfwd>
  9. #include <AzCore/std/string/string.h>
  10. #include <AzCore/Math/Vector3.h>
  11. #include <AzCore/Math/Quaternion.h>
  12. #include <EMotionFX/Source/Transform.h>
  13. namespace AZ
  14. {
  15. void PrintTo(const AZ::Vector3& vector, ::std::ostream* os);
  16. void PrintTo(const AZ::Quaternion& quaternion, ::std::ostream* os);
  17. } // namespace AZ
  18. namespace AZStd
  19. {
  20. void PrintTo(const string& string, ::std::ostream* os);
  21. } // namespace AZStd
  22. namespace EMotionFX
  23. {
  24. void PrintTo(const Transform& transform, ::std::ostream* os);
  25. } // namespace EMotionFX