Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:12:11

0001 // @(#)root/io:$Id$
0002 // Author: Rene Brun   23/07/97
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_TKeyMapFile
0013 #define ROOT_TKeyMapFile
0014 
0015 #include "TNamed.h"
0016 
0017 class TBrowser;
0018 class TMapFile;
0019 
0020 class TKeyMapFile : public TNamed {
0021 
0022 private:
0023    TKeyMapFile(const TKeyMapFile&) = delete;            // TKeyMapFile objects are not copiable.
0024    TKeyMapFile& operator=(const TKeyMapFile&) = delete; // TKeyMapFile objects are not copiable.
0025 
0026    TMapFile      *fMapFile;       ///< Pointer to map file
0027 
0028 public:
0029    TKeyMapFile();
0030    TKeyMapFile(const char *name, const char *classname, TMapFile *mapfile);
0031    ~TKeyMapFile() override {}
0032    void      Browse(TBrowser *b) override;
0033 
0034    ClassDefOverride(TKeyMapFile,0);  //Utility class for browsing TMapFile objects.
0035 };
0036 
0037 #endif