2019-06-06 19:36:56 -07:00
|
|
|
/*
|
2021-12-30 15:08:43 -08:00
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2017-11-23 09:40:02 -08:00
|
|
|
*
|
2019-10-15 10:30:08 -07:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2017-11-23 09:40:02 -08:00
|
|
|
*/
|
2019-10-15 10:30:08 -07:00
|
|
|
|
2017-11-23 09:40:02 -08:00
|
|
|
#pragma once
|
2022-06-07 07:42:49 -07:00
|
|
|
|
2017-11-23 09:40:02 -08:00
|
|
|
#include <string>
|
|
|
|
|
2024-02-02 11:00:53 -08:00
|
|
|
#include <yoga/Yoga.h>
|
2017-11-23 09:40:02 -08:00
|
|
|
|
2023-07-12 09:38:40 -07:00
|
|
|
namespace facebook::yoga {
|
2017-11-23 09:40:02 -08:00
|
|
|
|
2024-02-02 11:00:53 -08:00
|
|
|
void nodeToString(std::string& str, YGNodeRef node, YGPrintOptions options);
|
2017-11-23 09:40:02 -08:00
|
|
|
|
2023-07-12 09:38:40 -07:00
|
|
|
} // namespace facebook::yoga
|