Files
pico-launcher/common/logger/NullOutputStream.h

9 lines
156 B
C
Raw Permalink Normal View History

2025-11-22 17:21:45 +01:00
#pragma once
#include "IOutputStream.h"
class NullOutputStream : public IOutputStream
{
public:
void Write(const char* str) { }
void Flush() { }
};