mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
12 lines
No EOL
337 B
C++
12 lines
No EOL
337 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "nlohmann/json.hpp"
|
|
#include "dll_export.h"
|
|
|
|
SATDUMP_DLL extern nlohmann::json settings; // User settings / data, for example in the UI interface
|
|
SATDUMP_DLL extern nlohmann::json global_cfg; // Satdump-wise settings
|
|
|
|
void loadConfig();
|
|
void loadSettings(std::string path);
|
|
void saveSettings(); |