// Filename: weakPointerToBase.h // Created by: drose (27Sep04) // //////////////////////////////////////////////////////////////////// // // PANDA 3D SOFTWARE // Copyright (c) Carnegie Mellon University. All rights reserved. // // All use of this software is subject to the terms of the revised BSD // license. You should have received a copy of this license along // with this source code in a file named "LICENSE." // //////////////////////////////////////////////////////////////////// #ifndef WEAKPOINTERTOBASE_H #define WEAKPOINTERTOBASE_H #include "pandabase.h" #include "pointerToBase.h" #include "weakPointerToVoid.h" //////////////////////////////////////////////////////////////////// // Class : WeakPointerToBase // Description : This is the base class for PointerTo and // ConstPointerTo. Don't try to use it directly; use // either derived class instead. //////////////////////////////////////////////////////////////////// template class WeakPointerToBase : public WeakPointerToVoid { public: typedef T To; protected: INLINE WeakPointerToBase(To *ptr); INLINE WeakPointerToBase(const PointerToBase ©); INLINE WeakPointerToBase(const WeakPointerToBase ©); INLINE ~WeakPointerToBase(); void reassign(To *ptr); INLINE void reassign(const PointerToBase ©); INLINE void reassign(const WeakPointerToBase ©); // No assignment or retrieval functions are declared in // WeakPointerToBase, because we will have to specialize on const // vs. non-const later. public: // These comparison functions are common to all things PointerTo, so // they're defined up here. #ifndef CPPPARSER #ifndef WIN32_VC INLINE bool operator == (const To *other) const; INLINE bool operator != (const To *other) const; INLINE bool operator > (const To *other) const; INLINE bool operator <= (const To *other) const; INLINE bool operator >= (const To *other) const; INLINE bool operator == (To *other) const; INLINE bool operator != (To *other) const; INLINE bool operator > (To *other) const; INLINE bool operator <= (To *other) const; INLINE bool operator >= (To *other) const; INLINE bool operator == (const WeakPointerToBase &other) const; INLINE bool operator != (const WeakPointerToBase &other) const; INLINE bool operator > (const WeakPointerToBase &other) const; INLINE bool operator <= (const WeakPointerToBase &other) const; INLINE bool operator >= (const WeakPointerToBase &other) const; INLINE bool operator == (const PointerToBase &other) const; INLINE bool operator != (const PointerToBase &other) const; INLINE bool operator > (const PointerToBase &other) const; INLINE bool operator <= (const PointerToBase &other) const; INLINE bool operator >= (const PointerToBase &other) const; #endif // WIN32_VC INLINE bool operator < (const To *other) const; INLINE bool operator < (const WeakPointerToBase &other) const; INLINE bool operator < (const PointerToBase &other) const; #endif // CPPPARSER PUBLISHED: INLINE void clear(); INLINE void refresh() const; void output(ostream &out) const; }; template INLINE ostream &operator <<(ostream &out, const WeakPointerToBase &pointer) { pointer.output(out); return out; } #include "weakPointerToBase.I" #endif