11 lines
206 B
C
11 lines
206 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
// Mock Stream class for native testing
|
||
|
|
// Provides minimal interface needed by Utils.h
|
||
|
|
|
||
|
|
class Stream {
|
||
|
|
public:
|
||
|
|
virtual void print(char c) {}
|
||
|
|
virtual void print(const char* str) {}
|
||
|
|
};
|