Files
sdrpp/core/src/options.h
2020-12-22 14:50:26 +01:00

14 lines
243 B
C++

#pragma once
#include <string>
#include <new_module.h>
namespace options {
struct CMDLineOptions {
std::string root;
};
SDRPP_EXPORT CMDLineOptions opts;
void loadDefaults();
bool parse(int argc, char *argv[]);
}