#include "MessageLogger.h"
|
decltype(auto) | operator<< (char const *) |
|
template<class T > |
decltype(auto) | operator<< (T const &) |
|
decltype(auto) | operator<< (std::ostream &(*)(std::ostream &)) |
|
decltype(auto) | operator<< (std::ios_base &(*)(std::ios_base &)) |
|
Definition at line 84 of file MessageLogger.h.
decltype(auto) mf::NeverLogger_::operator<< |
( |
char const * |
| ) |
|
|
inline |
Definition at line 90 of file MessageLogger.h.
92 return std::forward<NeverLogger_>(*this);
template<class T >
decltype(auto) mf::NeverLogger_::operator<< |
( |
T const & |
| ) |
|
|
inline |
Definition at line 96 of file MessageLogger.h.
98 return std::forward<NeverLogger_>(*this);
decltype(auto) mf::NeverLogger_::operator<< |
( |
std::ostream & |
*)(std::ostream & | ) |
|
|
inline |
Definition at line 102 of file MessageLogger.h.
104 return std::forward<NeverLogger_>(*this);
decltype(auto) mf::NeverLogger_::operator<< |
( |
std::ios_base & |
*)(std::ios_base & | ) |
|
|
inline |
Definition at line 107 of file MessageLogger.h.
109 return std::forward<NeverLogger_>(*this);
The documentation for this class was generated from the following file: