10 lines
199 B
C
10 lines
199 B
C
|
#ifndef JsonDeserializer_h
|
||
|
#define JsonDeserializer_h
|
||
|
|
||
|
#include <ArduinoJson.h>
|
||
|
|
||
|
template <class T>
|
||
|
using JsonDeserializer = void (*)(JsonObject& root, T& settings);
|
||
|
|
||
|
#endif // end JsonDeserializer
|