LLDB mainline
CommandOptionValidators.h
Go to the documentation of this file.
1//===-- CommandOptionValidators.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_COMMANDOPTIONVALIDATORS_H
10#define LLDB_INTERPRETER_COMMANDOPTIONVALIDATORS_H
11
13
14namespace lldb_private {
15
16class Platform;
17class ExecutionContext;
18
20 bool IsValid(Platform &platform,
21 const ExecutionContext &target) const override;
22 const char *ShortConditionString() const override;
23 const char *LongConditionString() const override;
24};
25
26} // namespace lldb_private
27
28#endif // LLDB_INTERPRETER_COMMANDOPTIONVALIDATORS_H
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
A plug-in interface definition class for debug platform that includes many platform abilities such as...
Definition: Platform.h:74
bool IsValid(Platform &platform, const ExecutionContext &target) const override
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14