SDRPlusPlus/core/src/options.h

14 lines
200 B
C
Raw Normal View History

2020-12-15 23:05:11 +01:00
#pragma once
#include <string>
namespace options {
struct CMDLineOptions {
std::string root;
bool help;
};
CMDLineOptions opts;
void parse(char** argv, int argc);
}