mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-17 20:42:24 +02:00
14 lines
178 B
C++
14 lines
178 B
C++
/*
|
|
* Arduino JSON library
|
|
* Benoit Blanchon 2014 - MIT License
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
class JsonArray
|
|
{
|
|
public:
|
|
void writeTo(char* buffer, size_t bufferSize);
|
|
};
|
|
|