2016-01-17 04:11:43 -07:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2016-01-17 04:11:43 -07:00
|
|
|
|
2019-06-17 16:39:44 -06:00
|
|
|
#pragma once
|
|
|
|
|
2016-01-17 04:11:43 -07:00
|
|
|
#include <memory>
|
2017-11-26 09:22:37 -07:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2016-01-17 04:11:43 -07:00
|
|
|
|
|
|
|
namespace optparse
|
|
|
|
{
|
|
|
|
class OptionParser;
|
|
|
|
class Values;
|
2019-05-05 17:48:12 -06:00
|
|
|
} // namespace optparse
|
2016-01-17 04:11:43 -07: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 09:22:37 -07:00
|
|
|
optparse::Values& ParseArguments(optparse::OptionParser* parser,
|
|
|
|
const std::vector<std::string>& arguments);
|
2019-05-05 17:48:12 -06:00
|
|
|
} // namespace CommandLineParse
|