GCpp general purpose C++ library  version 1.0
GGlobal.hh
Go to the documentation of this file.
1 //======================================================================
2 /*! \file GGlobal.hh
3  *
4  * General global include file for the GCpp library
5  */
6 //======================================================================
7 
8 #ifndef G_GLOBAL_HH
9 #define G_GLOBAL_HH
10 
11 // C++ standard includes
12 #include <iostream>
13 #include <fstream>
14 #include <typeinfo>
15 #include <sstream>
16 #include <iomanip>
17 #include <string>
18 
19 // C standard includes
20 #include <math.h>
21 #include <ctype.h>
22 #include <stdlib.h>
23 #include <stdio.h>
24 #include <fcntl.h>
25 #include <string.h>
26 
27 #include <dirent.h>
28 #include <fnmatch.h>
29 
30 // Using the standard C++ namespace
31 using namespace std;
32 
33 // Defines type names
34 #include "GTypes.hh"
35 
36 // Defines shell terminal type (for color tcsh)
37 #include "GTerminalDefines.hh"
38 
39 // Defines various macro
40 #include "GMacrosDefines.hh"
41 
42 // Macros for classes definitions
43 #include "GClassDefine.hh"
44 
45 
46 //======================================================================
47 #endif