mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-05-11 08:36:55 +00:00
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) {}
|
|
};
|