Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // @(#)root/io:$Id$
0002 // Author: Philippe Canal March 2024
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2024, 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_TVirtualMapFile
0013 #define ROOT_TVirtualMapFile
0014 
0015 #include "TObject.h"
0016 
0017 /**
0018 \class TVirtualMapFile
0019 \ingroup Base
0020 
0021 Abstract base class for TMapFile
0022 
0023 This allows Core to handle TMapFile which is implemented in RIO
0024 
0025 */
0026 
0027 class TVirtualMapFile : public TObject {
0028 public:
0029    virtual void Close(Option_t *option = "") = 0;
0030 
0031    ClassDef(TVirtualMapFile, 0); // Base of TMapFile
0032 };
0033 
0034 #endif