Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:10:50

0001 // @(#)root/thread:$Id$
0002 // Author: Jakob Blomer, June 2020
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2006, 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_TErrorDefaultHandler
0013 #define ROOT_TErrorDefaultHandler
0014 
0015 namespace ROOT {
0016 namespace Internal {
0017 
0018 /// Destructs resources that are taken by using the default error handler.
0019 /// This function is called during the destruction of gROOT.
0020 void ReleaseDefaultErrorHandler();
0021 
0022 }
0023 }
0024 
0025 #endif