Printers.h 669 B

12345678910111213141516171819202122
  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. namespace AzFramework
  10. {
  11. struct ScreenPoint;
  12. struct ScreenVector;
  13. struct ScreenSize;
  14. class InputChannelId;
  15. void PrintTo(const ScreenPoint& screenPoint, std::ostream* os);
  16. void PrintTo(const ScreenVector& screenVector, std::ostream* os);
  17. void PrintTo(const ScreenSize& screenSize, std::ostream* os);
  18. void PrintTo(const InputChannelId& inputChannelId, std::ostream* os);
  19. } // namespace AzFramework