17 lines
254 B
C++
17 lines
254 B
C++
#ifndef UTIL_JSON_H
|
|
#define UTIL_JSON_H
|
|
|
|
#include "Libraries/JSON/nlohmann/json.hpp"
|
|
|
|
|
|
namespace PresenceDetection {
|
|
namespace Util {
|
|
|
|
using namespace nlohmann;
|
|
typedef json JSON;
|
|
|
|
} // namespace Util
|
|
} // namespace DomoticaServer
|
|
|
|
#endif // UTIL_JSON_H
|