MIXAL
src
flags.cpp
1
#include "
flags.h
"
2
3
namespace
mixal {
4
5
std::ostream&
operator<<
(std::ostream& os,
ComparisonIndicator
c) {
6
switch
(c) {
7
case
ComparisonIndicator::LESS: os <<
"LESS"
;
break
;
8
case
ComparisonIndicator::EQUAL: os <<
"EQUAL"
;
break
;
9
case
ComparisonIndicator::GREATER: os <<
"GREATER"
;
break
;
10
}
11
return
os;
12
}
13
14
};
// namespace mixal
mixal::ComparisonIndicator
ComparisonIndicator
Definition:
flags.h:14
mixal::operator<<
std::ostream & operator<<(std::ostream &out, Operation operation)
Definition:
expression.cpp:335
flags.h
The definition of special flags.
Generated by
1.8.20