13 lines
182 B
C++
13 lines
182 B
C++
#pragma once
|
|
|
|
#include <optional>
|
|
|
|
struct ProgramOptions
|
|
{
|
|
int max_range = 0;
|
|
int num_entries = 0;
|
|
std::optional<int> seed;
|
|
};
|
|
|
|
ProgramOptions get_params(int argc, char *argv[]);
|