FlowArithmeticCalculator 1.0.0
Flow Arithmetic Calculator
Loading...
Searching...
No Matches
InputChoice.h
Go to the documentation of this file.
1#ifndef BUSINESS_LOGIC_INPUT_INPUT_CHOICE_H
2#define BUSINESS_LOGIC_INPUT_INPUT_CHOICE_H
3
4#include <string>
5
6namespace business_logic::input {
10 template <typename T>
11 class InputChoice final {
12 public:
16 std::string displayName;
17
22 };
23} // namespace business_logic::input
24
25#endif // BUSINESS_LOGIC_INPUT_INPUT_CHOICE_H
T value
The input value of the input choice.
Definition InputChoice.h:21
std::string displayName
The display name of the input choice.
Definition InputChoice.h:16
Input primitives, either for GUI (models of components) or interaction with elements.