Path: blob/main/contrib/llvm-project/lldb/source/Commands/CommandObjectCommands.h
39587 views
//===-- CommandObjectCommands.h -----------------------------------*- C++1//-*-===//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-exception6//7//===----------------------------------------------------------------------===//89#ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTCOMMANDS_H10#define LLDB_SOURCE_COMMANDS_COMMANDOBJECTCOMMANDS_H1112#include "lldb/Interpreter/CommandObjectMultiword.h"1314namespace lldb_private {1516// CommandObjectMultiwordCommands1718class CommandObjectMultiwordCommands : public CommandObjectMultiword {19public:20CommandObjectMultiwordCommands(CommandInterpreter &interpreter);2122~CommandObjectMultiwordCommands() override;23};2425} // namespace lldb_private2627#endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTCOMMANDS_H282930