forked from bblanchon/ArduinoJson
18 lines
291 B
C++
18 lines
291 B
C++
// ArduinoJson - https://arduinojson.org
|
|
// Copyright Benoit Blanchon 2014-2021
|
|
// MIT License
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include "ArduinoJson.hpp"
|
|
|
|
using namespace ArduinoJson;
|
|
|
|
#else
|
|
|
|
#error ArduinoJson requires a C++ compiler, please change file extension to .cc or .cpp
|
|
|
|
#endif
|