home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / Found / FWRefCnt / FWCouPtr.cpp next >
Encoding:
Text File  |  1996-09-17  |  1.1 KB  |  37 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWCouPtr.cpp
  4. //    Release Version:    $ ODF 2 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #include "FWFound.hpp"
  11.  
  12. #ifndef FWCOUPTR_H
  13. #include "FWCouPtr.h"
  14. #endif
  15.  
  16. //========================================================================================
  17. // CLASS FW_MCountedPtrRep
  18. //========================================================================================
  19.  
  20. //----------------------------------------------------------------------------------------
  21. // FW_MCountedPtrRep::FW_MCountedPtrRep
  22. //----------------------------------------------------------------------------------------
  23.  
  24. FW_MCountedPtrRep::FW_MCountedPtrRep() :
  25.     fRefCount(0)
  26. {
  27. }
  28.  
  29. //----------------------------------------------------------------------------------------
  30. // FW_MCountedPtrRep::~FW_MCountedPtrRep
  31. //----------------------------------------------------------------------------------------
  32.  
  33. FW_MCountedPtrRep::~FW_MCountedPtrRep()
  34. {
  35. }
  36.  
  37.