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
16QT_YOGA_NAMESPACE_BEGIN
17
18namespace facebook {
19namespace yoga {
20
21void YGNodeToString(
22 std::string& str,
23 YGNodeRef node,
24 YGPrintOptions options,
25 uint32_t level);
26
27} // namespace yoga
28} // namespace facebook
29
30QT_YOGA_NAMESPACE_END
31
32#endif
33

source code of qtdeclarative/src/3rdparty/yoga/YGNodePrint.h