dolphin/Source/Core/UICommon/CommandLineParse.h

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

30 lines
702 B
C
Raw Normal View History

2016-01-17 11:11:43 +00:00
// Copyright 2017 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
2019-06-17 22:39:44 +00:00
#pragma once
2016-01-17 11:11:43 +00:00
#include <memory>
#include <string>
#include <vector>
2016-01-17 11:11:43 +00:00
namespace optparse
{
class OptionParser;
class Values;
} // 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);
optparse::Values& ParseArguments(optparse::OptionParser* parser,
const std::vector<std::string>& arguments);
} // namespace CommandLineParse