IAP GITLAB

Skip to content
Snippets Groups Projects
NoSink.h 276 B
Newer Older
#ifndef _include_NoSink_h_
#define _include_NoSink_h_

namespace corsika::logging {

  namespace sink {

    struct NoSink {
      inline void operator<<(const std::string&) {}
      inline void Close() {}
    };

ralfulrich's avatar
ralfulrich committed
  } // namespace sink
} // namespace corsika::logging