Files
dolphin/Source/Core/UICommon/CommandLineParse.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
679 B
C++
Raw Normal View History

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