00001 // @(#)root/base:$Id: Rpair.h 29770 2009-08-12 16:40:27Z rdm $ 00002 // Author: Philippe Canal 12/3/04 00003 00004 /************************************************************************* 00005 * Copyright (C) 1995-2004, Rene Brun, Fons Rademakers, and al. * 00006 * All rights reserved. * 00007 * * 00008 * For the licensing terms see $ROOTSYS/LICENSE. * 00009 * For the list of contributors see $ROOTSYS/README/CREDITS. * 00010 *************************************************************************/ 00011 00012 #ifndef ROOT_Rpair 00013 #define ROOT_Rpair 00014 00015 // Include the definition of pairs 00016 #include <utility> 00017 00018 // Import pairs (and string) into the global namespace to satisfy 00019 // the current CINT implementation of dictionary generation. 00020 #if defined(R__SOLARIS) 00021 using std::pair; 00022 using std::string; 00023 #else 00024 namespace std {} 00025 using namespace std; 00026 #endif 00027 00028 00029 #endif 00030 00031