9 #ifndef CoinSmartPtr_hpp 10 #define CoinSmartPtr_hpp 173 #if COIN_IPOPT_CHECKLEVEL > 2 174 # define IP_DEBUG_SMARTPTR 176 #ifdef IP_DEBUG_SMARTPTR 177 # include "IpDebug.hpp" 339 bool IsNull()
const {
return ptr_ == NULL; }
351 if (ptr_->ReferenceCount() == 0) {
379 #define dbg_smartptr_verbosity 0 388 (void) SetFromSmartPtr_(copy);
393 (void) SetFromRawPtr_(ptr);
408 #if COIN_COINUTILS_CHECKLEVEL > 0 417 #if COIN_IPOPT_CHECKLEVEL > 0 426 return SetFromRawPtr_(rhs);
433 return SetFromSmartPtr_(rhs);
438 template <
class U1,
class U2>
444 template <
class U1,
class U2>
450 template <
class U1,
class U2>
456 template <
class U1,
class U2>
462 template <
class U1,
class U2>
468 template <
class U1,
class U2>
475 template <
class U1,
class U2>
483 return static_cast<const void*
>(lhs) == static_cast<const void*>(rhs);
493 template <
class U1,
class U2>
498 template <
class U1,
class U2>
503 template <
class U1,
class U2>
508 template <
class U1,
class U2>
513 template <
class U1,
class U2>
518 template <
class U1,
class U2>
524 #define CoinReferencedObject Coin::ReferencedObject 525 #define CoinSmartPtr Coin::SmartPtr 526 #define CoinComparePointers Coin::ComparePointers void ReleasePointer_()
Release the currently referenced object.
bool operator!=(const Coin::SmartPtr< U1 > &lhs, const Coin::SmartPtr< U2 > &rhs)
bool IsNull() const
Returns true if the SmartPtr is NULL.
T * GetRawPtr() const
Returns the raw pointer contained.
~SmartPtr()
Destructor, automatically decrements the reference count, deletes the object if necessary.
bool IsValid() const
Returns true if the SmartPtr is NOT NULL.
bool ComparePointers(const U1 *lhs, const U2 *rhs)
Template class for Smart Pointers.
SmartPtr()
Default constructor, initialized to NULL.
T * ptr_
Actual raw pointer to the object.
SmartPtr< T > & operator=(const SmartPtr< T > &rhs)
Overloaded equals operator, allows the user to set the value of the SmartPtr from another SmartPtr...
bool operator==(const Coin::SmartPtr< U1 > &lhs, const Coin::SmartPtr< U2 > &rhs)
SmartPtr(const SmartPtr< T > ©)
Copy constructor, initialized from copy.
T * operator->() const
Overloaded arrow operator, allows the user to call methods using the contained pointer.
int ReferenceCount() const
SmartPtr< T > & operator=(T *rhs)
Overloaded equals operator, allows the user to set the value of the SmartPtr from a raw pointer...
SmartPtr(T *ptr)
Constructor, initialized from T* ptr.
T & operator*() const
Overloaded dereference operator, allows the user to dereference the contained pointer.
SmartPtr< T > & SetFromRawPtr_(T *rhs)
Set the value of the internal raw pointer from another raw pointer, releasing the previously referenc...
SmartPtr< T > & SetFromSmartPtr_(const SmartPtr< T > &rhs)
Set the value of the internal raw pointer from a SmartPtr, releasing the previously referenced object...
virtual ~ReferencedObject()