mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-09 09:47:12 +01:00
20 lines
361 B
C
20 lines
361 B
C
|
#pragma once
|
||
|
#include <json.hpp>
|
||
|
#include <fstream>
|
||
|
#include <spdlog/spdlog.h>
|
||
|
#include <filesystem>
|
||
|
#include <sstream>
|
||
|
#include <iomanip>
|
||
|
#include <thread>
|
||
|
#include <chrono>
|
||
|
|
||
|
using nlohmann::json;
|
||
|
|
||
|
namespace config {
|
||
|
void load(std::string path);
|
||
|
void startAutoSave();
|
||
|
void stopAutoSave();
|
||
|
|
||
|
extern bool configModified;
|
||
|
extern json config;
|
||
|
};
|