// Filename: threadSafePointerToBase.h // Created by: drose (28Apr06) // //////////////////////////////////////////////////////////////////// // // PANDA 3D SOFTWARE // Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved // // All use of this software is subject to the terms of the Panda 3d // Software license. You should have received a copy of this license // along with this source code; you will also find a current copy of // the license at http://etc.cmu.edu/panda3d/docs/license/ . // // To contact the maintainers of this program write to // panda3d-general@lists.sourceforge.net . // //////////////////////////////////////////////////////////////////// #ifndef THREADSAFEPOINTERTOBASE_H #define THREADSAFEPOINTERTOBASE_H #include "pandabase.h" #include "pointerToVoid.h" #include "referenceCount.h" #include "typedef.h" #include "memoryUsage.h" #include "config_express.h" #include "atomicAdjust.h" //////////////////////////////////////////////////////////////////// // Class : ThreadSafePointerToBase // Description : This is the base class for ThreadSafePointerTo and // ThreadSafeConstPointerTo. Don't try to use it // directly; use either derived class instead. //////////////////////////////////////////////////////////////////// template class ThreadSafePointerToBase : public PointerToVoid { public: typedef T To; protected: INLINE ThreadSafePointerToBase(To *ptr); INLINE ThreadSafePointerToBase(const ThreadSafePointerToBase ©); INLINE ~ThreadSafePointerToBase(); INLINE void reassign(To *ptr); INLINE void reassign(const ThreadSafePointerToBase ©); #ifdef DO_MEMORY_USAGE void update_type(To *ptr); #endif // DO_MEMORY_USAGE // No assignment or retrieval functions are declared in // ThreadSafePointerToBase, because we will have to specialize on const // vs. non-const later. PUBLISHED: INLINE void clear(); void output(ostream &out) const; }; template INLINE ostream &operator <<(ostream &out, const ThreadSafePointerToBase &pointer) { pointer.output(out); return out; } #include "threadSafePointerToBase.I" #endif