Loading...
Searching...
No Matches
Json.h
Go to the documentation of this file.
1// Copyright (c) 2025 Dave R. Smith.
2// Malena Framework — Licensed under PolyForm Noncommercial 1.0.0; commercial use requires a paid license. See LICENSE.
3
4#ifndef MALENA_JSON_H
5#define MALENA_JSON_H
6
7#pragma once
8
9#include <nlohmann/json.hpp>
10
11namespace ml
12{
32 using json = nlohmann::json;
33
34} // namespace ml
35
36#endif // MALENA_JSON_H
nlohmann::json json
Alias for nlohmann::json.
Definition Json.h:32
Definition Component.h:22