blob: 94afc00064c8496ec45f92fecff193f43d138d1c [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- CommandObjectTarget.h -----------------------------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Chris Lattner30fdc8d2010-06-08 16:52:24 +00006//
7//===----------------------------------------------------------------------===//
8
Jonas Devliegherecdc514e2020-02-17 15:57:45 -08009#ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTTARGET_H
10#define LLDB_SOURCE_COMMANDS_COMMANDOBJECTTARGET_H
Chris Lattner30fdc8d2010-06-08 16:52:24 +000011
Chris Lattner30fdc8d2010-06-08 16:52:24 +000012#include "lldb/Interpreter/CommandObjectMultiword.h"
13
14namespace lldb_private {
15
Chris Lattner30fdc8d2010-06-08 16:52:24 +000016// CommandObjectMultiwordTarget
Chris Lattner30fdc8d2010-06-08 16:52:24 +000017
Kate Stoneb9c1b512016-09-06 20:57:50 +000018class CommandObjectMultiwordTarget : public CommandObjectMultiword {
Chris Lattner30fdc8d2010-06-08 16:52:24 +000019public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000020 CommandObjectMultiwordTarget(CommandInterpreter &interpreter);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000021
Kate Stoneb9c1b512016-09-06 20:57:50 +000022 ~CommandObjectMultiwordTarget() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000023};
24
25} // namespace lldb_private
26
Jonas Devliegherecdc514e2020-02-17 15:57:45 -080027#endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTTARGET_H