00001 // @(#)root/base:$Id: TRefCnt.cxx 20877 2007-11-19 11:17:07Z rdm $ 00002 // Author: Fons Rademakers 04/08/95 00003 00004 /************************************************************************* 00005 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * 00006 * All rights reserved. * 00007 * * 00008 * For the licensing terms see $ROOTSYS/LICENSE. * 00009 * For the list of contributors see $ROOTSYS/README/CREDITS. * 00010 *************************************************************************/ 00011 00012 ////////////////////////////////////////////////////////////////////////// 00013 // // 00014 // TRefCnt // 00015 // // 00016 // Definitions for TRefCnt, base class for reference counted objects. // 00017 // // 00018 ////////////////////////////////////////////////////////////////////////// 00019 00020 00021 #include "TRefCnt.h" 00022 00023 00024 // This definition is compiled in case nothing else is, 00025 // in order to quiet down some fussy librarians 00026 int gDummy_ref_cpp; 00027 00028 //_______________________________________________________________________ 00029 TRefCnt::TRefCnt(EReferenceFlag) 00030 { 00031 // Leave fRefs alone 00032 }