1 //===-- CommandObjectRegister.h ---------------------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTREGISTER_H
10 #define LLDB_SOURCE_COMMANDS_COMMANDOBJECTREGISTER_H
12 #include "lldb/Interpreter/CommandObjectMultiword.h"
14 namespace lldb_private
{
16 // CommandObjectRegister
18 class CommandObjectRegister
: public CommandObjectMultiword
{
20 // Constructors and Destructors
21 CommandObjectRegister(CommandInterpreter
&interpreter
);
23 ~CommandObjectRegister() override
;
26 // For CommandObjectRegister only
27 CommandObjectRegister(const CommandObjectRegister
&) = delete;
28 const CommandObjectRegister
&
29 operator=(const CommandObjectRegister
&) = delete;
32 } // namespace lldb_private
34 #endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTREGISTER_H