ROOT
6.06/09
Reference Guide
ROOT Home Page
Main Page
Related Pages
User's Classes
Namespaces
All Classes
Files
Release Notes
File List
File Members
tree
tree
src
TVirtualIndex.cxx
Go to the documentation of this file.
1
// @(#)root/tree:$Id$
2
// Author: Rene Brun 05/07/2004
3
4
/*************************************************************************
5
* Copyright (C) 1995-2004, Rene Brun and Fons Rademakers. *
6
* All rights reserved. *
7
* *
8
* For the licensing terms see $ROOTSYS/LICENSE. *
9
* For the list of contributors see $ROOTSYS/README/CREDITS. *
10
*************************************************************************/
11
12
/** \class TVirtualIndex
13
Abstract interface for Tree Index
14
*/
15
16
#include "
TVirtualIndex.h
"
17
#include "
TTree.h
"
18
19
ClassImp
(
TVirtualIndex
)
20
21
////////////////////////////////////////////////////////////////////////////////
22
/// Default constructor for TVirtualIndex
23
24
TVirtualIndex
::
TVirtualIndex
():
TNamed
()
25
{
26
fTree = 0;
27
}
28
29
////////////////////////////////////////////////////////////////////////////////
30
31
TVirtualIndex::~TVirtualIndex
()
32
{
33
}
TVirtualIndex
Abstract interface for Tree Index.
Definition:
TVirtualIndex.h:31
TTree.h
TVirtualIndex::~TVirtualIndex
virtual ~TVirtualIndex()
Definition:
TVirtualIndex.cxx:31
TVirtualIndex.h
TNamed
The TNamed class is the base class for all named ROOT classes.
Definition:
TNamed.h:33
ClassImp
ClassImp(TVirtualIndex) TVirtualIndex
Default constructor for TVirtualIndex.
Definition:
TVirtualIndex.cxx:19