LLDB mainline
OptionValueArgs.h
Go to the documentation of this file.
1//===-- OptionValueArgs.h --------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_INTERPRETER_OPTIONVALUEARGS_H
10#define LLDB_INTERPRETER_OPTIONVALUEARGS_H
11
13
14namespace lldb_private {
15
16class OptionValueArgs : public Cloneable<OptionValueArgs, OptionValueArray> {
17public:
20
21 ~OptionValueArgs() override = default;
22
23 size_t GetArgs(Args &args) const;
24
25 Type GetType() const override { return eTypeArgs; }
26};
27
28} // namespace lldb_private
29
30#endif // LLDB_INTERPRETER_OPTIONVALUEARGS_H
A command line argument class.
Definition: Args.h:33
A class that implements CRTP-based "virtual constructor" idiom.
Definition: Cloneable.h:40
~OptionValueArgs() override=default
Type GetType() const override
size_t GetArgs(Args &args) const
static uint32_t ConvertTypeToMask(OptionValue::Type type)
Definition: OptionValue.h:140
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14