00001 // @(#)root/tree:$Id: TVirtualIndex.cxx 20882 2007-11-19 11:31:26Z rdm $ 00002 // Author: Rene Brun 05/07/2004 00003 00004 /************************************************************************* 00005 * Copyright (C) 1995-2004, 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 // Abstract interface for Tree Index // 00015 // // 00016 ////////////////////////////////////////////////////////////////////////// 00017 00018 #include "TVirtualIndex.h" 00019 #include "TTree.h" 00020 00021 ClassImp(TVirtualIndex) 00022 00023 //______________________________________________________________________________ 00024 TVirtualIndex::TVirtualIndex(): TNamed() 00025 { 00026 // Default constructor for TVirtualIndex 00027 00028 fTree = 0; 00029 } 00030 00031 //______________________________________________________________________________ 00032 TVirtualIndex::~TVirtualIndex() 00033 { 00034 }