| 1 | /* |
| 2 | * Copyright (C) 2016 The Qt Company Ltd. |
| 3 | * Copyright (c) Meta Platforms, Inc. and affiliates. |
| 4 | * |
| 5 | * SPDX-License-Identifier: MIT |
| 6 | */ |
| 7 | |
| 8 | #ifdef DEBUG |
| 9 | |
| 10 | #pragma once |
| 11 | |
| 12 | #include <string> |
| 13 | |
| 14 | #include <yoga/Yoga.h> |
| 15 | |
| 16 | QT_YOGA_NAMESPACE_BEGIN |
| 17 | |
| 18 | namespace facebook { |
| 19 | namespace yoga { |
| 20 | |
| 21 | void YGNodeToString( |
| 22 | std::string& str, |
| 23 | YGNodeRef node, |
| 24 | YGPrintOptions options, |
| 25 | uint32_t level); |
| 26 | |
| 27 | } // namespace yoga |
| 28 | } // namespace facebook |
| 29 | |
| 30 | QT_YOGA_NAMESPACE_END |
| 31 | |
| 32 | #endif |
| 33 | |