SDRPlusPlus/core/src/options.h

14 wiersze
243 B
C
Czysty Zwykły widok Historia

2020-12-15 22:05:11 +00:00
#pragma once
#include <string>
2020-12-22 13:50:26 +00:00
#include <new_module.h>
2020-12-15 22:05:11 +00:00
namespace options {
struct CMDLineOptions {
std::string root;
};
2020-12-22 13:50:26 +00:00
SDRPP_EXPORT CMDLineOptions opts;
2020-12-15 22:05:11 +00:00
2020-12-22 13:50:26 +00:00
void loadDefaults();
bool parse(int argc, char *argv[]);
}