LLDB mainline
CommandOptionsProcessLaunch.h
Go to the documentation of this file.
1//===-- CommandOptionsProcessLaunch.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_SOURCE_COMMANDS_COMMANDOPTIONSPROCESSLAUNCH_H
10#define LLDB_SOURCE_COMMANDS_COMMANDOPTIONSPROCESSLAUNCH_H
11
14
15namespace lldb_private {
16
17// CommandOptionsProcessLaunch
18
20public:
22 // Keep default values of all options in one place: OptionParsingStarting
23 // ()
24 OptionParsingStarting(nullptr);
25 }
26
27 ~CommandOptionsProcessLaunch() override = default;
28
30 SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
31 lldb_private::ExecutionContext *execution_context) override;
32
34 lldb_private::ExecutionContext *execution_context) override {
37 }
38
39 llvm::ArrayRef<lldb_private::OptionDefinition> GetDefinitions() override;
40
41 // Instance variables to hold the values for command options.
42
45}; // CommandOptionsProcessLaunch
46
47} // namespace lldb_private
48
49#endif // LLDB_SOURCE_COMMANDS_COMMANDOPTIONSPROCESSLAUNCH_H
void OptionParsingStarting(lldb_private::ExecutionContext *execution_context) override
lldb_private::Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, lldb_private::ExecutionContext *execution_context) override
llvm::ArrayRef< lldb_private::OptionDefinition > GetDefinitions() override
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
An error handling class.
Definition: Status.h:44
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14