mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 16:14:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			862 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			862 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Arduino JSON library
 | |
|  * Benoit Blanchon 2014 - MIT License
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include "JsonObjectBase.h"
 | |
| 
 | |
| #ifndef ARDUINO_JSON_NO_DEPRECATION_WARNING
 | |
| #ifdef __GNUC__
 | |
| #define DEPRECATED __attribute__((deprecated))
 | |
| #elif defined(_MSC_VER)
 | |
| #define DEPRECATED __declspec(deprecated)
 | |
| #endif
 | |
| #else
 | |
| #define DEPRECATED
 | |
| #endif
 | |
| 
 | |
| namespace ArduinoJson
 | |
| {
 | |
|     namespace Generator
 | |
|     {
 | |
|         template <int N>
 | |
|         class JsonObject : public JsonObjectBase
 | |
|         {
 | |
|         public:
 | |
|             JsonObject()
 | |
|                 : JsonObjectBase(items, N)
 | |
|             {
 | |
|             }
 | |
| 
 | |
|         private:
 | |
|             KeyValuePair items[N];
 | |
|         };
 | |
| 
 | |
|         
 | |
|         // Obsolete: use JsonObject instead
 | |
|         template <int N>
 | |
|         class DEPRECATED JsonHashTable : public JsonObject<N>
 | |
|         {            
 | |
|         };
 | |
|     }
 | |
| } |