FlowArithmeticCalculator 1.0.0
Flow Arithmetic Calculator
Loading...
Searching...
No Matches
BlockType.h
Go to the documentation of this file.
1#ifndef BUSINESS_LOGIC_ELEMENTS_BASE_BLOCK_TYPE_H
2#define BUSINESS_LOGIC_ELEMENTS_BASE_BLOCK_TYPE_H
3
4#include <cstdint>
5
10 enum class BlockType : std::uint8_t {
13 Divide,
15 Add,
16 Power,
17 Invert,
19 };
20} // namespace business_logic::elements::blocks
21
22#endif // BUSINESS_LOGIC_ELEMENTS_BASE_BLOCK_TYPE_H
The base classes and structs for elements.
BlockType
The available block types.
Definition BlockType.h:10