]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/src/AliL3StandardIncludes.h
Wrong CVS merging corrected
[u/mrichter/AliRoot.git] / HLT / src / AliL3StandardIncludes.h
CommitLineData
3e87ef69 1// @(#) $Id$
2
ca372030 3#ifndef ALIL3STANDARDINCLUDESH
4#define ALIL3STANDARDINCLUDESH
5
0bd0c1ef 6#if __GNUC__ == 3
3e87ef69 7#include <fstream>
de3c3890 8#include <iostream>
ca372030 9
10#include <cstdio>
11#include <cmath>
12#include <cstring>
13#include <ctime>
14#include <cstdlib>
15
ca372030 16/* Use these only if absolutely necessary
17eg. in inline functions defined in header files */
18#define STDCOUT std::cout
19#define STDCERR std::cerr
20#define STDENDL std::endl
de3c3890 21#define STDIF std::ifstream
22#define STDOF std::ofstream
ca372030 23
24#else
3e87ef69 25#include <iostream.h>
26#include <fstream.h>
ca372030 27
28#include <stdio.h>
29#include <math.h>
30#include <string.h>
31#include <time.h>
32#include <stdlib.h>
33
ca372030 34/* Use these only if absolutely necessary
35eg. in inline functions defined in header files */
36#define STDCOUT cout
37#define STDCERR cerr
38#define STDENDL endl
de3c3890 39#define STDIF ifstream
40#define STDOF ofstream
ca372030 41
0bd0c1ef 42#endif //__GNUC__
ca372030 43
44#endif
45