Lodestar
An integrated real-time control package in C++
AlgebraicOperators.hpp
1 //
2 // Created by Hamza El-Kebir on 6/12/21.
3 //
4 
5 #ifndef LODESTAR_ALGEBRAICOPERATORS_HPP
6 #define LODESTAR_ALGEBRAICOPERATORS_HPP
7 
8 enum class AlgebraicOperators {
9  Addition,
10  Subtraction,
11  Multiplication,
12  Division,
13  Exponentiation
14 };
15 
16 template <AlgebraicOperators... TOps>
18 
19 };
20 
21 #endif //LODESTAR_ALGEBRAICOPERATORS_HPP
AlgebraicOperatorsPack
Definition: AlgebraicOperators.hpp:17