FTXUI  5.0.0
C++ functional terminal UI.
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>
8 #include <string>
9 
10 namespace ftxui {
11 Element text(std::wstring text);
12 Element vtext(std::wstring text);
13 Elements paragraph(std::wstring text);
14 } // namespace ftxui
15 
16 #endif // FTXUI_DOM_DEPRECATED_HPP
std::shared_ptr< Node > Element
Definition: elements.hpp:22
Elements paragraph(std::wstring text)
Element text(std::wstring text)
Display a piece of unicode text.
Definition: text.cpp:119
std::vector< Element > Elements
Definition: elements.hpp:23
Element vtext(std::wstring text)
Display a piece unicode text vertically.
Definition: text.cpp:179