kaycxx-term
C++ terminal library
Loading...
Searching...
No Matches
input_mode.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2026 Klaus Reimer <k@ailis.de>
2// SPDX-License-Identifier: MIT
3
4#pragma once
5
11namespace kaycxx::term {
12
16enum class input_mode {
18 normal,
19
21 raw
22};
23
24} // namespace kaycxx::term
input_mode
Terminal input mode.
Definition input_mode.hpp:16
@ raw
Raw key input without line buffering or echo.
@ normal
Canonical line input with echo and normal processing.