Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // @(#)root/hist:$Id$
0002 // Author: Rene Brun   31/08/99
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_TVirtualPaveStats
0013 #define ROOT_TVirtualPaveStats
0014 
0015 //////////////////////////////////////////////////////////////////////////
0016 //                                                                      //
0017 // TVirtualPaveStats                                                    //
0018 //                                                                      //
0019 // Abstract base class for PaveStats                                    //
0020 //                                                                      //
0021 //////////////////////////////////////////////////////////////////////////
0022 
0023 
0024 #include "Rtypes.h"
0025 
0026 class TObject;
0027 
0028 class TVirtualPaveStats {
0029 
0030 public:
0031    virtual ~TVirtualPaveStats() = default;
0032 
0033    virtual TObject *GetParent() const = 0;
0034    virtual void SetParent(TObject *) = 0;
0035 
0036    ClassDef(TVirtualPaveStats, 0)  //Abstract interface for TPaveStats
0037 };
0038 
0039 #endif