RadioImagerGPU 1.0
Loading...
Searching...
No Matches
config.hpp
Go to the documentation of this file.
1// include/config.hpp
2#ifndef CONFIG_HPP
3#define CONFIG_HPP
4
5#include <fstream>
6#include <nlohmann/json.hpp>
7
8namespace config {
9 extern int IMAGE_SIZE;
10 extern double PREDEFINED_MAX_UV;
11
12 void load_config(const std::string& config_file);
13}
14
15#endif
16
Contains functions and variables related to configuration settings.
void load_config(const std::string &config_file)
Loads the configuration settings from a JSON file.
Definition config.cpp:17
double PREDEFINED_MAX_UV
Definition config.cpp:10
int IMAGE_SIZE
Definition config.cpp:9