diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-07-18 17:53:20 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-07-18 17:53:20 +0000 |
commit | 482ad087ef5f441918b719350524b7ed9c4d1993 (patch) | |
tree | 7a02a8238a1f09162eff17e07c3019fc65c282ef /lldb/scripts/Python | |
parent | 4208cace5fe9cee462aa074161d2209a77c20423 (diff) | |
download | bcm5719-llvm-482ad087ef5f441918b719350524b7ed9c4d1993.tar.gz bcm5719-llvm-482ad087ef5f441918b719350524b7ed9c4d1993.zip |
Cleaned up the interface file for SBTarget.
llvm-svn: 135405
Diffstat (limited to 'lldb/scripts/Python')
-rw-r--r-- | lldb/scripts/Python/interface/SBTarget.i | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/lldb/scripts/Python/interface/SBTarget.i b/lldb/scripts/Python/interface/SBTarget.i index eaf8ddfc85f..649d39773aa 100644 --- a/lldb/scripts/Python/interface/SBTarget.i +++ b/lldb/scripts/Python/interface/SBTarget.i @@ -57,11 +57,6 @@ public: SBTarget (const lldb::SBTarget& rhs); -#ifndef SWIG - const lldb::SBTarget& - operator = (const lldb::SBTarget& rhs); -#endif - //------------------------------------------------------------------ // Destructor //------------------------------------------------------------------ @@ -396,53 +391,8 @@ public: 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 |