Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/TVersionCheck.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // @(#)root/base:$Id$
0002 // Author: Fons Rademakers   9/5/2007
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2007, 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_TVersionCheck
0013 #define ROOT_TVersionCheck
0014 
0015 #include "RVersion.h"
0016 
0017 /** \class TVersionCheck
0018 \ingroup Base
0019 
0020 Used to check if the shared library or plugin is compatible with
0021 the current version of ROOT.
0022 */
0023 
0024 class TVersionCheck {
0025 public:
0026    TVersionCheck(int versionCode);  // implemented in TSystem.cxx
0027 };
0028 
0029 namespace ROOT {
0030 namespace Internal {
0031 static TVersionCheck gVersionCheck(ROOT_VERSION_CODE);
0032 }
0033 }
0034 #endif