mirror of
https://github.com/gabrielkheisa/antares-esp8266-mqtt.git
synced 2025-04-05 11:59:10 +07:00
23 lines
355 B
C++
Executable File
23 lines
355 B
C++
Executable File
// ArduinoJson - arduinojson.org
|
|
// Copyright Benoit Blanchon 2014-2017
|
|
// MIT License
|
|
|
|
#pragma once
|
|
|
|
namespace ArduinoJson {
|
|
namespace Internals {
|
|
|
|
// A dummy Print implementation used in JsonPrintable::measureLength()
|
|
class DummyPrint {
|
|
public:
|
|
size_t print(char) {
|
|
return 1;
|
|
}
|
|
|
|
size_t print(const char* s) {
|
|
return strlen(s);
|
|
}
|
|
};
|
|
}
|
|
}
|