aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/argument_parser.hpp
blob: 222d9e09c50312cd23420f52c6950d7a0d8e51ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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 ParsedArguments
	parse(const std::vector<option> &options, const std::string_view &short_options,
		  const int &argc,
		  char *const *argv) = 0; // NOLINT(cppcoreguidelines-avoid-c-arrays,
								  // modernize-avoid-c-arrays)
};