ZenLib
PreComp.h
Go to the documentation of this file.
1 // PreComp - PreComp file for ZenLib
2 // Copyright (C) 2006-2011 MediaArea.net SARL, Info@MediaArea.net
3 //
4 // This library is free software: you can redistribute it and/or modify it
5 // under the terms of the GNU Lesser General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // any later version.
8 //
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public License
15 // along with this library. If not, see <http://www.gnu.org/licenses/>.
16 //
17 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
18 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
19 //
20 // Helpers for compilers (precompilation)
21 //
22 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
23 
24 //---------------------------------------------------------------------------
25 #ifndef ZenLib_PreCompH
26 #define ZenLib_PreCompH
27 //---------------------------------------------------------------------------
28 
29 //---------------------------------------------------------------------------
30 #if defined(_MSC_VER) || defined(__BORLANDC__)
31  #include <cstring>
32  #include <cstdio>
33  #include <cstdlib>
34  #include <ctime>
35  #include <algorithm>
36  #include <map>
37  #include <sstream>
38  #include <iomanip>
39  #include <cmath>
40  #include "ZenLib/Conf.h"
41  #include "ZenLib/Conf_Internal.h"
42 #endif //defined(_MSC_VER) || defined(__BORLANDC__)
43 //---------------------------------------------------------------------------
44 
45 #endif