// @(#)root/base:$Id$ // Author: Philippe Canal 23/2/02 /************************************************************************* * Copyright (C) 1995-2002, Rene Brun, Fons Rademakers and al. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_Rtypeinfo #define ROOT_Rtypeinfo #ifndef ROOT_RConfig #include "RConfig.h" #endif #if defined(R__SOLARIS) // includes which clashes with //#include namespace std { class type_info; } using std::type_info; #elif defined(R__GLOBALSTL) #include #else #include using std::type_info; #endif #endif