Files
IoTManager/lib/ArduinoStreamUtils/src/StreamUtils/Prints/SpyingPrint.hpp

18 lines
422 B
C++
Raw Normal View History

2021-12-22 14:09:50 +01:00
// StreamUtils - github.com/bblanchon/ArduinoStreamUtils
// Copyright Benoit Blanchon 2019-2021
// MIT License
#pragma once
#include "../Policies/WriteSpyingPolicy.hpp"
#include "PrintProxy.hpp"
namespace StreamUtils {
struct SpyingPrint : PrintProxy<WriteSpyingPolicy> {
SpyingPrint(Print &target, Print &log)
: PrintProxy<WriteSpyingPolicy>(target, WriteSpyingPolicy{log}) {}
};
} // namespace StreamUtils