FTXUI
6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
direction.hpp
Go to the documentation of this file.
1
// Copyright 2023 Arthur Sonzogni. 全著作権所有。
2
// このソースコードの使用は、LICENSE ファイルにあるMITライセンスによって管理されています。
3
#ifndef FTXUI_DOM_DIRECTION_HPP
4
#define FTXUI_DOM_DIRECTION_HPP
5
6
namespace
ftxui
{
7
8
/// @brief Directionは、東西南北の4つの基本方向を表す列挙型です。
9
///
10
/// @ingroup dom
11
enum class
Direction
{
12
Up
= 0,
13
Down
= 1,
14
Left
= 2,
15
Right
= 3,
16
};
17
18
}
// namespace ftxui
19
20
#endif
/* end of include guard: FTXUI_DOM_DIRECTION_HPP */
ftxui::Direction
Direction
Directionは、東西南北の4つの基本方向を表す列挙型です。
Definition
direction.hpp:11
ftxui::Direction::Down
@ Down
ftxui::Direction::Up
@ Up
ftxui::Direction::Right
@ Right
ftxui::Direction::Left
@ Left
ftxui
FTXUI ftxui:: 名前空間
Definition
animation.hpp:9