ROOT logo
// @(#)root/hbook:$Id: THbookKey.h 20882 2007-11-19 11:31:26Z rdm $
// Author: Rene Brun   20/02/2002

/*************************************************************************
 * Copyright (C) 1995-2002, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_THbookKey
#define ROOT_THbookKey


//////////////////////////////////////////////////////////////////////////
//                                                                      //
// THbookKey                                                            //
//                                                                      //
// Hbook id descriptor                                                  //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#ifndef ROOT_THbookFile
#include "THbookFile.h"
#endif

class THbookKey : public TNamed {

protected:
   THbookFile    *fDirectory;   //!pointer to the Hbook file
   Int_t          fID;          //hbook identifier

public:
   THbookKey() {;}
   THbookKey(Int_t id, THbookFile *file);
   virtual ~THbookKey();
   virtual void      Browse(TBrowser *b);
   Bool_t            IsFolder() const;

   ClassDef(THbookKey,1)  //Hbook id descriptor
};

#endif
 THbookKey.h:1
 THbookKey.h:2
 THbookKey.h:3
 THbookKey.h:4
 THbookKey.h:5
 THbookKey.h:6
 THbookKey.h:7
 THbookKey.h:8
 THbookKey.h:9
 THbookKey.h:10
 THbookKey.h:11
 THbookKey.h:12
 THbookKey.h:13
 THbookKey.h:14
 THbookKey.h:15
 THbookKey.h:16
 THbookKey.h:17
 THbookKey.h:18
 THbookKey.h:19
 THbookKey.h:20
 THbookKey.h:21
 THbookKey.h:22
 THbookKey.h:23
 THbookKey.h:24
 THbookKey.h:25
 THbookKey.h:26
 THbookKey.h:27
 THbookKey.h:28
 THbookKey.h:29
 THbookKey.h:30
 THbookKey.h:31
 THbookKey.h:32
 THbookKey.h:33
 THbookKey.h:34
 THbookKey.h:35
 THbookKey.h:36
 THbookKey.h:37
 THbookKey.h:38
 THbookKey.h:39
 THbookKey.h:40
 THbookKey.h:41
 THbookKey.h:42
 THbookKey.h:43
 THbookKey.h:44