mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-01-20 00:29:54 +00:00
7a7b0046cd
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
29 lines
467 B
C++
29 lines
467 B
C++
#pragma once
|
|
|
|
#include <cassert>
|
|
#include <cstdint>
|
|
#include <filesystem>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
#include <tuple>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
#define USE_BOOST_JSON
|
|
//#define USE_NLOHMANN_JSON
|
|
//#define USE_JSONCPP_JSON
|
|
|
|
#ifdef USE_BOOST_JSON
|
|
# include <boost/json.hpp>
|
|
#endif
|
|
|
|
#ifdef USE_NLOHMANN_JSON
|
|
# include "nlohmann/json.hpp"
|
|
#endif
|
|
|
|
#ifdef USE_JSONCPP_JSON
|
|
# include <json/json.h>
|
|
#endif
|