blob: 742646db2152e0e0adf6941d2c8eb5f6ff4cb793 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#pragma once
#include "interfaces/randomization.hpp"
#include <getopt.h>
#include <memory>
#include <string_view>
#include <vector>
struct ParsedArguments
{
std::shared_ptr<IRandomNumberGenerator> random_gen = nullptr;
};
class IArgumentParser
{
public:
virtual ~IArgumentParser() noexcept = default;
virtual ParsedArguments
parse(const std::vector<option> &options, const std::string_view &short_options,
const int &argc,
char *const *argv) noexcept = 0; // NOLINT(cppcoreguidelines-avoid-c-arrays,
// modernize-avoid-c-arrays)
};
|