FTXUI 6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
dom/deprecated.hpp
Go to the documentation of this file.
1// Copyright 2021 Arthur Sonzogni. All rights reserved.
2// Use of this source code is governed by the MIT license that can be found in
3// the LICENSE file.
4#ifndef FTXUI_DOM_DEPRECATED_HPP
5#define FTXUI_DOM_DEPRECATED_HPP
6
7#include <ftxui/dom/node.hpp>
9#include <string>
10
11namespace ftxui {
12FTXUI_EXPORT(DOM) Element text(std::wstring_view text);
13FTXUI_EXPORT(DOM) Element vtext(std::wstring_view text);
14} // namespace ftxui
15
16#endif // FTXUI_DOM_DEPRECATED_HPP
#define FTXUI_EXPORT(component)
Definition export.hpp:24
Element text(std::string_view text)
Display a piece of UTF8 encoded unicode text.
Element vtext(std::string_view text)
Display a piece of unicode text vertically.
The FTXUI ftxui:: namespace.
Definition animation.hpp:11
std::shared_ptr< Node > Element
Definition elements.hpp:24