-
ralfulrich authoredralfulrich authored
NoSink.h 253 B
#ifndef _include_NoSink_h_
#define _include_NoSink_h_
namespace logger {
namespace sink {
struct NoSink {
inline void operator<<(const std::string&) {}
inline void Close() {}
};
}// end namespace
} // end namespace
#endif