mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	* Added `serializeJson()` and `serializeJsonPretty()` * Added `measureJson()` and `measureJsonPretty()` * Removed `printTo()` and `prettyPrintTo()` * Removed `measureLength()` and `measurePrettyLength()`
		
			
				
	
	
		
			23 lines
		
	
	
		
			648 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			648 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // ArduinoJson - arduinojson.org
 | |
| // Copyright Benoit Blanchon 2014-2018
 | |
| // MIT License
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include "JsonVariantCasts.hpp"
 | |
| #include "JsonVariantComparisons.hpp"
 | |
| #include "JsonVariantOr.hpp"
 | |
| #include "JsonVariantSubscripts.hpp"
 | |
| 
 | |
| namespace ArduinoJson {
 | |
| namespace Internals {
 | |
| 
 | |
| template <typename TImpl>
 | |
| class JsonVariantBase : public JsonVariantCasts<TImpl>,
 | |
|                         public JsonVariantComparisons<TImpl>,
 | |
|                         public JsonVariantOr<TImpl>,
 | |
|                         public JsonVariantSubscripts<TImpl>,
 | |
|                         public JsonVariantTag {};
 | |
| }  // namespace Internals
 | |
| }  // namespace ArduinoJson
 |