Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
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

DOCTEST_INTERFACE std::ostreamoperator<< (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 691 of file doctest.h.

692 {
693 None = 0,
694 White,
695 Red,
696 Green,
697 Blue,
698 Cyan,
699 Yellow,
700 Grey,
701
702 Bright = 0x10,
703
704 BrightRed = Bright | Red,
708 };

Function Documentation

◆ operator<<()

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