ManaPlus
Enumerations | Functions
doctest::Color Namespace Reference

Enumerations

enum  Enum {
  None = 0 , White , Red , Green ,
  Blue , Cyan , Yellow , Grey ,
  Bright = 0x10 , BrightRed = Bright | Red , BrightGreen = Bright | Green , LightGrey = Bright | Grey ,
  BrightWhite = Bright | White
}
 

Functions

std::ostream & operator<< (std::ostream &s, Color::Enum code)
 

Enumeration Type Documentation

◆ Enum

Enumerator
None 
White 
Red 
Green 
Blue 
Cyan 
Yellow 
Grey 
Bright 
BrightRed 
BrightGreen 
LightGrey 
BrightWhite 

Definition at line 514 of file doctest.h.

515  {
516  None = 0,
517  White,
518  Red,
519  Green,
520  Blue,
521  Cyan,
522  Yellow,
523  Grey,
524 
525  Bright = 0x10,
526 
527  BrightRed = Bright | Red,
529  LightGrey = Bright | Grey,
531  };

Function Documentation

◆ operator<<()

std::ostream& doctest::Color::operator<< ( std::ostream &  s,
Color::Enum  code 
)