[Lldb-commits] [lldb] r135405 - /lldb/trunk/scripts/Python/interface/SBTarget.i
Johnny Chen
johnny.chen at apple.com
Mon Jul 18 10:53:20 PDT 2011
Author: johnny
Date: Mon Jul 18 12:53:20 2011
New Revision: 135405
URL: http://llvm.org/viewvc/llvm-project?rev=135405&view=rev
Log:
Cleaned up the interface file for SBTarget.
Modified:
lldb/trunk/scripts/Python/interface/SBTarget.i
Modified: lldb/trunk/scripts/Python/interface/SBTarget.i
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/Python/interface/SBTarget.i?rev=135405&r1=135404&r2=135405&view=diff
==============================================================================
--- lldb/trunk/scripts/Python/interface/SBTarget.i (original)
+++ lldb/trunk/scripts/Python/interface/SBTarget.i Mon Jul 18 12:53:20 2011
@@ -57,11 +57,6 @@
SBTarget (const lldb::SBTarget& rhs);
-#ifndef SWIG
- const lldb::SBTarget&
- operator = (const lldb::SBTarget& rhs);
-#endif
-
//------------------------------------------------------------------
// Destructor
//------------------------------------------------------------------
@@ -396,53 +391,8 @@
lldb::SBBroadcaster
GetBroadcaster () const;
-#ifndef SWIG
- bool
- operator == (const lldb::SBTarget &rhs) const;
-
- bool
- operator != (const lldb::SBTarget &rhs) const;
-
-#endif
-
-#ifndef SWIG
- bool
- GetDescription (lldb::SBStream &description, lldb::DescriptionLevel description_level);
-#endif
-
bool
GetDescription (lldb::SBStream &description, lldb::DescriptionLevel description_level) const;
-
-protected:
- friend class SBAddress;
- friend class SBDebugger;
- friend class SBFunction;
- friend class SBProcess;
- friend class SBSymbol;
- friend class SBModule;
-
- //------------------------------------------------------------------
- // Constructors are private, use static Target::Create function to
- // create an instance of this class.
- //------------------------------------------------------------------
-
- SBTarget (const lldb::TargetSP& target_sp);
-
- void
- reset (const lldb::TargetSP& target_sp);
-
- lldb_private::Target *
- operator ->() const;
-
- lldb_private::Target *
- get() const;
-
-private:
- //------------------------------------------------------------------
- // For Target only
- //------------------------------------------------------------------
-
- lldb::TargetSP m_opaque_sp;
};
} // namespace lldb
More information about the lldb-commits
mailing list