MIXAL
All Classes Files Functions Variables Typedefs Enumerations Friends Pages
flags.h
Go to the documentation of this file.
1 #ifndef INCLUDE_FLAGS_H_
2 #define INCLUDE_FLAGS_H_
3 
4 #include <iostream>
5 
11 namespace mixal {
12 
14 enum class ComparisonIndicator {
15  LESS = -1,
16  EQUAL = 0,
17  GREATER = 1,
18 };
19 
21 std::ostream& operator<<(std::ostream& os, ComparisonIndicator c);
22 
23 }; // namespace mixal
24 
25 
26 #endif // INCLUDE_FLAGS_H_
mixal::ComparisonIndicator
ComparisonIndicator
Definition: flags.h:14