mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 00:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			514 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			514 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// ArduinoJson - https://arduinojson.org
 | 
						|
// Copyright © 2014-2022, Benoit BLANCHON
 | 
						|
// MIT License
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <sstream>
 | 
						|
 | 
						|
class CustomReader {
 | 
						|
  std::stringstream _stream;
 | 
						|
 | 
						|
 public:
 | 
						|
  CustomReader(const char* input) : _stream(input) {}
 | 
						|
 | 
						|
  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());
 | 
						|
  }
 | 
						|
 | 
						|
 private:
 | 
						|
  CustomReader(const CustomReader&);
 | 
						|
};
 |