Files
MeshCore/test/mocks/Stream.h
T
2026-04-24 19:37:21 +00:00

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) {}
};