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 // Permission is granted to anyone to use this software for any purpose,
5 // including commercial applications, and to alter it and redistribute it
6 // freely, subject to the following restrictions:
7 //
8 // 1. The origin of this software must not be misrepresented; you must not
9 // claim that you wrote the original software. If you use this software
10 // in a product, an acknowledgment in the product documentation would be
11 // appreciated but is not required.
12 // 2. Altered source versions must be plainly marked as such, and must not be
13 // misrepresented as being the original software.
14 // 3. This notice may not be removed or altered from any source distribution.
15 //
16 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
17 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
18 //
19 // Helpers for compilers (precompilation)
20 //
21 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
22 
23 //---------------------------------------------------------------------------
24 #ifndef ZenLib_PreCompH
25 #define ZenLib_PreCompH
26 //---------------------------------------------------------------------------
27 
28 //---------------------------------------------------------------------------
29 #if defined(_MSC_VER) || defined(__BORLANDC__)
30  #include <cstring>
31  #include <cstdio>
32  #include <cstdlib>
33  #include <ctime>
34  #include <algorithm>
35  #include <map>
36  #include <sstream>
37  #include <iomanip>
38  #include <cmath>
39  #include "ZenLib/Conf.h"
40  #include "ZenLib/Conf_Internal.h"
41 #endif //defined(_MSC_VER) || defined(__BORLANDC__)
42 //---------------------------------------------------------------------------
43 
44 #endif