summaryrefslogtreecommitdiff
path: root/include/lib/ArduinoJson/Namespace.hpp
blob: 9b18c652681a8d520f1dc550038bc18971ab767c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021
// MIT License

#pragma once

#include "lib/ArduinoJson/Configuration.hpp"
#include "lib/ArduinoJson/Polyfills/preprocessor.hpp"
#include "lib/ArduinoJson/version.hpp"

#ifndef ARDUINOJSON_NAMESPACE

#define ARDUINOJSON_NAMESPACE                                                  \
  ARDUINOJSON_CONCAT4(                                                         \
      ARDUINOJSON_CONCAT4(ArduinoJson, ARDUINOJSON_VERSION_MAJOR,              \
                          ARDUINOJSON_VERSION_MINOR,                           \
                          ARDUINOJSON_VERSION_REVISION),                       \
      _,                                                                       \
      ARDUINOJSON_HEX_DIGIT(ARDUINOJSON_ENABLE_PROGMEM,                        \
                            ARDUINOJSON_USE_LONG_LONG, ARDUINOJSON_USE_DOUBLE, \
                            ARDUINOJSON_ENABLE_STRING_DEDUPLICATION),          \
      ARDUINOJSON_HEX_DIGIT(                                                   \
          ARDUINOJSON_ENABLE_NAN, ARDUINOJSON_ENABLE_INFINITY,                 \
          ARDUINOJSON_ENABLE_COMMENTS, ARDUINOJSON_DECODE_UNICODE))

#endif