diff options
author | Caroline Tice <ctice@apple.com> | 2010-09-22 16:41:52 +0000 |
---|---|---|
committer | Caroline Tice <ctice@apple.com> | 2010-09-22 16:41:52 +0000 |
commit | 7740412f2be16aae3573a47c67b34a9f907d6cb7 (patch) | |
tree | 67d8c77fcf3efd43759e1637b9a5c0eff3203f32 /lldb/source/API/SBCommandContext.cpp | |
parent | a1ed39be769d48a013f240c7c03ac391963ae4c1 (diff) | |
download | bcm5719-llvm-7740412f2be16aae3573a47c67b34a9f907d6cb7.tar.gz bcm5719-llvm-7740412f2be16aae3573a47c67b34a9f907d6cb7.zip |
Remove SBCommandContext which was not needed or doing anything.
Add SBValueList.h & SBStream.h to build-swig-Python.sh; add SBValueList.h to lldb.swig
llvm-svn: 114549
Diffstat (limited to 'lldb/source/API/SBCommandContext.cpp')
-rw-r--r-- | lldb/source/API/SBCommandContext.cpp | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/lldb/source/API/SBCommandContext.cpp b/lldb/source/API/SBCommandContext.cpp deleted file mode 100644 index 35bd6bb7c84..00000000000 --- a/lldb/source/API/SBCommandContext.cpp +++ /dev/null @@ -1,34 +0,0 @@ -//===-- SBCommandContext.cpp ------------------------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include "lldb/Core/Debugger.h" -#include "lldb/Interpreter/CommandReturnObject.h" - -#include "lldb/API/SBCommandContext.h" - - -using namespace lldb; -using namespace lldb_private; - - -SBCommandContext::SBCommandContext (Debugger *lldb_object) : - m_opaque (lldb_object) -{ -} - -SBCommandContext::~SBCommandContext () -{ -} - -bool -SBCommandContext::IsValid () const -{ - return m_opaque != NULL; -} - |