MIXAL
Enumerations | Functions
flags.h File Reference

The definition of special flags. More...

#include <iostream>

Go to the source code of this file.

Enumerations

enum  mixal::ComparisonIndicator { LESS = -1, EQUAL = 0, GREATER = 1 }
 

Functions

std::ostream & mixal::operator<< (std::ostream &os, ComparisonIndicator c)
 

Detailed Description

The definition of special flags.

Definition in file flags.h.

Enumeration Type Documentation

◆ ComparisonIndicator

The result of a comparision.

Definition at line 14 of file flags.h.

14  {
15  LESS = -1,
16  EQUAL = 0,
17  GREATER = 1,
18 };

Function Documentation

◆ operator<<()

std::ostream & mixal::operator<< ( std::ostream &  os,
ComparisonIndicator  c 
)

Output the name of comparision.

Definition at line 5 of file flags.cpp.

5  {
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 }

References mixal::operator<<().