SDRPlusPlus/src/config.h

20 lines
361 B
C
Raw Normal View History

2020-08-16 03:39:05 +02:00
#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;
};