blob: 4ab2da447697bcb68d7ab6e715743dec232e5e83 [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
9#ifndef liblldb_CommandObjectTarget_h_
10#define liblldb_CommandObjectTarget_h_
11
Chris Lattner30fdc8d2010-06-08 16:52:24 +000012#include "lldb/Interpreter/CommandObjectMultiword.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000013#include "lldb/Interpreter/Options.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000014
15namespace lldb_private {
16
17//-------------------------------------------------------------------------
18// CommandObjectMultiwordTarget
19//-------------------------------------------------------------------------
20
Kate Stoneb9c1b512016-09-06 20:57:50 +000021class CommandObjectMultiwordTarget : public CommandObjectMultiword {
Chris Lattner30fdc8d2010-06-08 16:52:24 +000022public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000023 CommandObjectMultiwordTarget(CommandInterpreter &interpreter);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000024
Kate Stoneb9c1b512016-09-06 20:57:50 +000025 ~CommandObjectMultiwordTarget() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000026};
27
28} // namespace lldb_private
29
Pavel Labath1fb7e202015-09-02 09:33:09 +000030#endif // liblldb_CommandObjectTarget_h_