Version: SMASH-3.2
einhard::Color< Parent > Class Template Reference

#include <einhard.hpp>

template<typename Parent>
class einhard::Color< Parent >

A stream modifier that allows to colorize the log output.

Definition at line 146 of file einhard.hpp.

Public Member Functions

EINHARD_ALWAYS_INLINE_ Color () noexcept
 The default color modifier only affects the next object in the stream. More...
 
EINHARD_ALWAYS_INLINE_ Color< Parent > operator~ () const noexcept
 With the ~ operator the color modifier affects the rest of the stream (or until another color object is used). More...
 
EINHARD_ALWAYS_INLINE_ char const * ansiCode () const noexcept
 
EINHARD_ALWAYS_INLINE_ bool resetColor () const noexcept
 

Private Member Functions

EINHARD_ALWAYS_INLINE_ Color (bool r) noexcept
 

Private Attributes

bool reset
 

Constructor & Destructor Documentation

◆ Color() [1/2]

template<typename Parent >
EINHARD_ALWAYS_INLINE_ einhard::Color< Parent >::Color ( )
inlinenoexcept

The default color modifier only affects the next object in the stream.

Definition at line 150 of file einhard.hpp.

150  : reset( true )
151  {
152  }

◆ Color() [2/2]

template<typename Parent >
EINHARD_ALWAYS_INLINE_ einhard::Color< Parent >::Color ( bool  r)
inlineprivatenoexcept

Definition at line 169 of file einhard.hpp.

169  : reset( r )
170  {
171  }

Member Function Documentation

◆ operator~()

template<typename Parent >
EINHARD_ALWAYS_INLINE_ Color<Parent> einhard::Color< Parent >::operator~ ( ) const
inlinenoexcept

With the ~ operator the color modifier affects the rest of the stream (or until another color object is used).

Definition at line 155 of file einhard.hpp.

156  {
157  return {false};
158  }

◆ ansiCode()

template<typename Parent >
EINHARD_ALWAYS_INLINE_ char const* einhard::Color< Parent >::ansiCode ( ) const
inlinenoexcept

Definition at line 159 of file einhard.hpp.

160  {
161  return Parent::ANSI();
162  }

◆ resetColor()

template<typename Parent >
EINHARD_ALWAYS_INLINE_ bool einhard::Color< Parent >::resetColor ( ) const
inlinenoexcept

Definition at line 163 of file einhard.hpp.

164  {
165  return reset;
166  }

Member Data Documentation

◆ reset

template<typename Parent >
bool einhard::Color< Parent >::reset
private

Definition at line 172 of file einhard.hpp.


The documentation for this class was generated from the following file: