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#pragma once
9
10#include <yoga/YGEnums.h>
11
12QT_YOGA_NAMESPACE_BEGIN
13
14struct YGNode;
15struct YGConfig;
16namespace facebook {
17namespace yoga {
18
19namespace detail {
20
21struct Log {
22 static void log(
23 YGNode* node,
24 YGLogLevel level,
25 void*,
26 const char* message,
27 ...) noexcept;
28
29 static void log(
30 YGConfig* config,
31 YGLogLevel level,
32 void*,
33 const char* format,
34 ...) noexcept;
35};
36
37} // namespace detail
38} // namespace yoga
39} // namespace facebook
40
41QT_YOGA_NAMESPACE_END
42

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