xrootd
XrdSysHeaders.hh
Go to the documentation of this file.
1 #ifndef __XRDSYS_HEADERS_H__
2 #define __XRDSYS_HEADERS_H__
3 /******************************************************************************/
4 /* */
5 /* X r d S y s H e a d e r s . h h */
6 /* */
7 /* (c) 2004 by the Board of Trustees of the Leland Stanford, Jr., University */
8 /* All Rights Reserved. See XrdInfo.cc for complete License Terms */
9 /* Produced by Andrew Hanushevsky for Stanford University under contract */
10 /* DE-AC03-76-SFO0515 with the Department of Energy */
11 /******************************************************************************/
12 
13 // $Id$
14 
15 // This header has been introduced to help the transition to new versions
16 // of the gcc compiler which deprecates or even not support some standard
17 // headers in the form <header_name>.h
18 //
19 
20 #if !defined(HAVE_OLD_HDRS) || defined(WIN32)
21 
22 // gcc >= 4.3, cl require this
23 # include <iostream>
24 using namespace std;
25 
26 #else
27 
28 # include <iostream.h>
29 
30 #endif
31 
32 
33 
34 #endif // __XRDSYS_HEADERS_H__