29 lines · c
1//===-- CommandObjectCommands.h -----------------------------------*- C++2//-*-===//3//4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.5// See https://llvm.org/LICENSE.txt for license information.6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception7//8//===----------------------------------------------------------------------===//9 10#ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTCOMMANDS_H11#define LLDB_SOURCE_COMMANDS_COMMANDOBJECTCOMMANDS_H12 13#include "lldb/Interpreter/CommandObjectMultiword.h"14 15namespace lldb_private {16 17// CommandObjectMultiwordCommands18 19class CommandObjectMultiwordCommands : public CommandObjectMultiword {20public:21 CommandObjectMultiwordCommands(CommandInterpreter &interpreter);22 23 ~CommandObjectMultiwordCommands() override;24};25 26} // namespace lldb_private27 28#endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTCOMMANDS_H29