// Filename: typedWritableReferenceCount.I // Created by: jason (08Jun00) // //////////////////////////////////////////////////////////////////// // // 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." // //////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////// // Function: TypedWritableReferenceCount::Constructor // Access: Public // Description: //////////////////////////////////////////////////////////////////// INLINE TypedWritableReferenceCount:: TypedWritableReferenceCount() { #ifdef DO_MEMORY_USAGE MemoryUsage::update_type(this, this); #endif } //////////////////////////////////////////////////////////////////// // Function: TypedWritableReferenceCount::Copy Constructor // Access: Public // Description: //////////////////////////////////////////////////////////////////// INLINE TypedWritableReferenceCount:: TypedWritableReferenceCount(const TypedWritableReferenceCount ©) : TypedWritable(copy), ReferenceCount(copy) { #ifdef DO_MEMORY_USAGE MemoryUsage::update_type(this, this); #endif } //////////////////////////////////////////////////////////////////// // Function: TypedWritableReferenceCount::Copy Assignment Operator // Access: Public // Description: //////////////////////////////////////////////////////////////////// INLINE void TypedWritableReferenceCount:: operator = (const TypedWritableReferenceCount ©) { TypedWritable::operator = (copy); ReferenceCount::operator = (copy); }