summaryrefslogtreecommitdiff
path: root/include/lib/ArduinoJson/Serialization/Writers/PrintWriter.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/lib/ArduinoJson/Serialization/Writers/PrintWriter.hpp')
-rw-r--r--include/lib/ArduinoJson/Serialization/Writers/PrintWriter.hpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/include/lib/ArduinoJson/Serialization/Writers/PrintWriter.hpp b/include/lib/ArduinoJson/Serialization/Writers/PrintWriter.hpp
new file mode 100644
index 0000000..13a6491
--- /dev/null
+++ b/include/lib/ArduinoJson/Serialization/Writers/PrintWriter.hpp
@@ -0,0 +1,28 @@
+// ArduinoJson - https://arduinojson.org
+// Copyright Benoit Blanchon 2014-2021
+// MIT License
+
+#pragma once
+
+namespace ARDUINOJSON_NAMESPACE {
+
+template <typename TDestination>
+class Writer<
+ TDestination,
+ typename enable_if<is_base_of< ::Print, TDestination>::value>::type> {
+ public:
+ explicit Writer(::Print& print) : _print(&print) {}
+
+ size_t write(uint8_t c) {
+ return _print->write(c);
+ }
+
+ size_t write(const uint8_t* s, size_t n) {
+ return _print->write(s, n);
+ }
+
+ private:
+ ::Print* _print;
+};
+
+} // namespace ARDUINOJSON_NAMESPACE