aboutsummaryrefslogtreecommitdiff
path: root/source/Commands/CommandObjectCommands.h
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2013-08-23 17:46:38 +0000
committerEd Maste <emaste@FreeBSD.org>2013-08-23 17:46:38 +0000
commitf034231a6a1fd5d6395206c1651de8cd9402cca3 (patch)
treef561dabc721ad515599172c16da3a4400b7f4aec /source/Commands/CommandObjectCommands.h
downloadsrc-f034231a6a1fd5d6395206c1651de8cd9402cca3.tar.gz
src-f034231a6a1fd5d6395206c1651de8cd9402cca3.zip
Import lldb as of SVN r188801
(A number of files not required for the FreeBSD build have been removed.) Sponsored by: DARPA, AFRL
Notes
Notes: svn path=/vendor/lldb/dist/; revision=254721
Diffstat (limited to 'source/Commands/CommandObjectCommands.h')
-rw-r--r--source/Commands/CommandObjectCommands.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/source/Commands/CommandObjectCommands.h b/source/Commands/CommandObjectCommands.h
new file mode 100644
index 000000000000..8a56e8dae6ff
--- /dev/null
+++ b/source/Commands/CommandObjectCommands.h
@@ -0,0 +1,40 @@
+//===-- CommandObjectCommands.h -----------------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef liblldb_CommandObjectCommands_h_
+#define liblldb_CommandObjectCommands_h_
+
+// C Includes
+// C++ Includes
+// Other libraries and framework includes
+// Project includes
+#include "lldb/Interpreter/CommandObject.h"
+#include "lldb/Interpreter/CommandObjectMultiword.h"
+#include "lldb/Core/STLUtils.h"
+
+namespace lldb_private {
+
+//-------------------------------------------------------------------------
+// CommandObjectMultiwordCommands
+//-------------------------------------------------------------------------
+
+class CommandObjectMultiwordCommands : public CommandObjectMultiword
+{
+public:
+
+ CommandObjectMultiwordCommands (CommandInterpreter &interpreter);
+
+ virtual
+ ~CommandObjectMultiwordCommands ();
+
+};
+
+} // namespace lldb_private
+
+#endif // liblldb_CommandObjectCommands_h_