FTXUI
6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
direction.hpp
Go to the documentation of this file.
1
// 版權所有 2023 Arthur Sonzogni. 保留所有權利。
2
// 本原始碼受 MIT 授權條款約束,詳情請參閱
3
// LICENSE 檔案。
4
#ifndef FTXUI_DOM_DIRECTION_HPP
5
#define FTXUI_DOM_DIRECTION_HPP
6
7
namespace
ftxui
{
8
9
/// @brief Direction 是一個列舉,表示四個主要方向。
10
///
11
/// @ingroup dom
12
enum class
Direction
{
13
Up
= 0,
14
Down
= 1,
15
Left
= 2,
16
Right
= 3,
17
};
18
19
}
// namespace ftxui
20
21
#endif
/* end of include guard: FTXUI_DOM_DIRECTION_HPP */
ftxui::Direction
Direction
Direction 是一個列舉,表示四個主要方向。
Definition
direction.hpp:12
ftxui::Direction::Down
@ Down
ftxui::Direction::Up
@ Up
ftxui::Direction::Right
@ Right
ftxui::Direction::Left
@ Left
ftxui
FTXUI 的 ftxui:: 命名空間
Definition
animation.hpp:10