mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-05-27 21:29:21 +03:00
20 lines
544 B
C++
20 lines
544 B
C++
|
|
// StreamUtils - github.com/bblanchon/ArduinoStreamUtils
|
||
|
|
// Copyright Benoit Blanchon 2019-2021
|
||
|
|
// MIT License
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "../Policies/ReadSpyingPolicy.hpp"
|
||
|
|
#include "../Policies/WriteSpyingPolicy.hpp"
|
||
|
|
#include "StreamProxy.hpp"
|
||
|
|
|
||
|
|
namespace StreamUtils {
|
||
|
|
|
||
|
|
struct SpyingStream : StreamProxy<ReadSpyingPolicy, WriteSpyingPolicy> {
|
||
|
|
SpyingStream(Stream &target, Print &log)
|
||
|
|
: StreamProxy<ReadSpyingPolicy, WriteSpyingPolicy>(
|
||
|
|
target, ReadSpyingPolicy{log}, WriteSpyingPolicy{log}) {}
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace StreamUtils
|