Files
MeshCore-Evo/test/mocks/Stream.h

11 lines
206 B
C
Raw Normal View History

2025-10-12 11:11:05 -04:00
#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) {}
};