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