Path: blob/main/contrib/llvm-project/lldb/source/Commands/CommandObjectRegister.h
96333 views
//===-- CommandObjectRegister.h ---------------------------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTREGISTER_H9#define LLDB_SOURCE_COMMANDS_COMMANDOBJECTREGISTER_H1011#include "lldb/Interpreter/CommandObjectMultiword.h"1213namespace lldb_private {1415// CommandObjectRegister1617class CommandObjectRegister : public CommandObjectMultiword {18public:19// Constructors and Destructors20CommandObjectRegister(CommandInterpreter &interpreter);2122~CommandObjectRegister() override;2324private:25// For CommandObjectRegister only26CommandObjectRegister(const CommandObjectRegister &) = delete;27const CommandObjectRegister &28operator=(const CommandObjectRegister &) = delete;29};3031} // namespace lldb_private3233#endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTREGISTER_H343536