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