blob: a5ef777aa98286d3638ba0a443e14c675ed9d428 [file] [log] [blame]
Kate Stoneb9c1b512016-09-06 20:57:50 +00001//===-- CommandObjectCommands.h -----------------------------------*- C++
2//-*-===//
Jim Inghamebc09c32010-07-07 03:36:20 +00003//
4// The LLVM Compiler Infrastructure
5//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef liblldb_CommandObjectCommands_h_
12#define liblldb_CommandObjectCommands_h_
13
14// C Includes
15// C++ Includes
16// Other libraries and framework includes
17// Project includes
Kate Stoneb9c1b512016-09-06 20:57:50 +000018#include "lldb/Core/STLUtils.h"
Jim Inghamebc09c32010-07-07 03:36:20 +000019#include "lldb/Interpreter/CommandObject.h"
20#include "lldb/Interpreter/CommandObjectMultiword.h"
Jim Inghamebc09c32010-07-07 03:36:20 +000021
22namespace lldb_private {
23
24//-------------------------------------------------------------------------
25// CommandObjectMultiwordCommands
26//-------------------------------------------------------------------------
27
Kate Stoneb9c1b512016-09-06 20:57:50 +000028class CommandObjectMultiwordCommands : public CommandObjectMultiword {
Jim Inghamebc09c32010-07-07 03:36:20 +000029public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000030 CommandObjectMultiwordCommands(CommandInterpreter &interpreter);
Jim Inghamebc09c32010-07-07 03:36:20 +000031
Kate Stoneb9c1b512016-09-06 20:57:50 +000032 ~CommandObjectMultiwordCommands() override;
Jim Inghamebc09c32010-07-07 03:36:20 +000033};
34
35} // namespace lldb_private
36
Pavel Labath1fb7e202015-09-02 09:33:09 +000037#endif // liblldb_CommandObjectCommands_h_