1b9c1b51eSKate Stone //===-- CommandObjectCommands.h -----------------------------------*- C++ 2b9c1b51eSKate Stone //-*-===// 3ebc09c36SJim Ingham // 42946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 52946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 62946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7ebc09c36SJim Ingham // 8ebc09c36SJim Ingham //===----------------------------------------------------------------------===// 9ebc09c36SJim Ingham 10*cdc514e4SJonas Devlieghere #ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTCOMMANDS_H 11*cdc514e4SJonas Devlieghere #define LLDB_SOURCE_COMMANDS_COMMANDOBJECTCOMMANDS_H 12ebc09c36SJim Ingham 13ebc09c36SJim Ingham #include "lldb/Interpreter/CommandObjectMultiword.h" 14ebc09c36SJim Ingham 15ebc09c36SJim Ingham namespace lldb_private { 16ebc09c36SJim Ingham 17ebc09c36SJim Ingham // CommandObjectMultiwordCommands 18ebc09c36SJim Ingham 19b9c1b51eSKate Stone class CommandObjectMultiwordCommands : public CommandObjectMultiword { 20ebc09c36SJim Ingham public: 21ebc09c36SJim Ingham CommandObjectMultiwordCommands(CommandInterpreter &interpreter); 22ebc09c36SJim Ingham 231fb7e202SPavel Labath ~CommandObjectMultiwordCommands() override; 24ebc09c36SJim Ingham }; 25ebc09c36SJim Ingham 26ebc09c36SJim Ingham } // namespace lldb_private 27ebc09c36SJim Ingham 28*cdc514e4SJonas Devlieghere #endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTCOMMANDS_H 29