mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 16:14:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			874 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			874 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright Benoit Blanchon 2014-2016
 | |
| // MIT License
 | |
| //
 | |
| // Arduino JSON library
 | |
| // https://github.com/bblanchon/ArduinoJson
 | |
| // If you like this project, please add a star!
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include "../Configuration.hpp"
 | |
| 
 | |
| namespace ArduinoJson {
 | |
| namespace Internals {
 | |
| 
 | |
| template <typename TString, typename Enable = void>
 | |
| struct StringFuncs {};
 | |
| 
 | |
| template <typename TString>
 | |
| struct StringFuncs<const TString, void> : StringFuncs<TString> {};
 | |
| 
 | |
| template <typename TString>
 | |
| struct StringFuncs<TString&, void> : StringFuncs<TString> {};
 | |
| }
 | |
| }
 | |
| 
 | |
| #include "CharPointer.hpp"
 | |
| 
 | |
| #if ARDUINOJSON_ENABLE_STD_STRING || ARDUINOJSON_ENABLE_ARDUINO_STRING
 | |
| #include "StdString.hpp"
 | |
| #endif
 | |
| 
 | |
| #if ARDUINOJSON_ENABLE_STD_STREAM
 | |
| #include "StdStream.hpp"
 | |
| #endif
 | |
| 
 | |
| #if ARDUINOJSON_ENABLE_ARDUINO_STREAM
 | |
| #include "ArduinoStream.hpp"
 | |
| #endif
 | |
| 
 | |
| #if ARDUINOJSON_ENABLE_PROGMEM
 | |
| #include "FlashString.hpp"
 | |
| #endif
 |