mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 00:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			491 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			491 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Arduino JSON library
 | 
						|
 * Benoit Blanchon 2014 - MIT License
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "JsonHashTableBase.h"
 | 
						|
 | 
						|
namespace ArduinoJson
 | 
						|
{
 | 
						|
    namespace Generator
 | 
						|
    {
 | 
						|
        template<int N>
 | 
						|
        class JsonHashTable : public JsonHashTableBase
 | 
						|
        {
 | 
						|
        public:
 | 
						|
            JsonHashTable()
 | 
						|
                : JsonHashTableBase(items, N)
 | 
						|
            {
 | 
						|
            }            
 | 
						|
 | 
						|
        private:
 | 
						|
            KeyValuePair items[N];     
 | 
						|
        };
 | 
						|
    }
 | 
						|
} |