You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
512 B
24 lines
512 B
// ArduinoJson - https://arduinojson.org
|
|
// Copyright © 2014-2024, Benoit BLANCHON
|
|
// MIT License
|
|
|
|
#pragma once
|
|
|
|
#include <sstream>
|
|
|
|
class CustomReader {
|
|
std::stringstream stream_;
|
|
|
|
public:
|
|
CustomReader(const char* input) : stream_(input) {}
|
|
CustomReader(const CustomReader&) = delete;
|
|
|
|
int read() {
|
|
return stream_.get();
|
|
}
|
|
|
|
size_t readBytes(char* buffer, size_t length) {
|
|
stream_.read(buffer, static_cast<std::streamsize>(length));
|
|
return static_cast<size_t>(stream_.gcount());
|
|
}
|
|
};
|
|
|