2016-01-17 11:11:43 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2016-01-17 11:11:43 +00:00
|
|
|
|
2019-06-17 22:39:44 +00:00
|
|
|
#pragma once
|
|
|
|
|
2016-01-17 11:11:43 +00:00
|
|
|
#include <memory>
|
2017-11-26 16:22:37 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2016-01-17 11:11:43 +00:00
|
|
|
|
|
|
|
namespace optparse
|
|
|
|
{
|
|
|
|
class OptionParser;
|
|
|
|
class Values;
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace optparse
|
2016-01-17 11:11:43 +00:00
|
|
|
|
|
|
|
namespace CommandLineParse
|
|
|
|
{
|
|
|
|
enum class ParserOptions
|
|
|
|
{
|
|
|
|
IncludeGUIOptions,
|
|
|
|
OmitGUIOptions,
|
|
|
|
};
|
|
|
|
|
|
|
|
std::unique_ptr<optparse::OptionParser> CreateParser(ParserOptions options);
|
|
|
|
optparse::Values& ParseArguments(optparse::OptionParser* parser, int argc, char** argv);
|
2017-11-26 16:22:37 +00:00
|
|
|
optparse::Values& ParseArguments(optparse::OptionParser* parser,
|
|
|
|
const std::vector<std::string>& arguments);
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace CommandLineParse
|