mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2025-12-05 13:16:06 +01:00
10 lines
155 B
C++
10 lines
155 B
C++
#pragma once
|
|
|
|
class IOutputStream
|
|
{
|
|
public:
|
|
virtual ~IOutputStream() { }
|
|
|
|
virtual void Write(const char* str) = 0;
|
|
virtual void Flush() = 0;
|
|
}; |