blob: 0daef13858605fbc12793d5249c67662e614e26b [file] [log] [blame]
Jim Ingham767af882010-07-07 03:36:20 +00001//===-- CommandObjectSource.h.h -----------------------------------*- C++ -*-===//
Chris Lattner24943d22010-06-08 16:52:24 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef liblldb_CommandObjectSource_h_
11#define liblldb_CommandObjectSource_h_
12
13// C Includes
14// C++ Includes
15// Other libraries and framework includes
16// Project includes
17#include "lldb/Interpreter/CommandObject.h"
Jim Ingham767af882010-07-07 03:36:20 +000018#include "lldb/Interpreter/CommandObjectMultiword.h"
Chris Lattner24943d22010-06-08 16:52:24 +000019#include "lldb/Core/STLUtils.h"
20
21namespace lldb_private {
22
23//-------------------------------------------------------------------------
Jim Ingham767af882010-07-07 03:36:20 +000024// CommandObjectMultiwordSource
Chris Lattner24943d22010-06-08 16:52:24 +000025//-------------------------------------------------------------------------
26
Jim Ingham767af882010-07-07 03:36:20 +000027class CommandObjectMultiwordSource : public CommandObjectMultiword
Chris Lattner24943d22010-06-08 16:52:24 +000028{
29public:
30
Jim Ingham767af882010-07-07 03:36:20 +000031 CommandObjectMultiwordSource (CommandInterpreter &interpreter);
Chris Lattner24943d22010-06-08 16:52:24 +000032
33 virtual
Jim Ingham767af882010-07-07 03:36:20 +000034 ~CommandObjectMultiwordSource ();
Chris Lattner24943d22010-06-08 16:52:24 +000035
36};
37
38} // namespace lldb_private
39
Jim Ingham767af882010-07-07 03:36:20 +000040#endif // liblldb_CommandObjectSource.h_h_