00001 /* Copyright (c) MediaArea.net SARL. All Rights Reserved. 00002 * 00003 * Use of this source code is governed by a zlib-style license that can 00004 * be found in the License.txt file in the root of the source tree. 00005 */ 00006 00007 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00008 // 00009 // Helpers for compilers (precompilation) 00010 // 00011 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00012 00013 //--------------------------------------------------------------------------- 00014 #ifndef ZenLib_PreCompH 00015 #define ZenLib_PreCompH 00016 //--------------------------------------------------------------------------- 00017 00018 //--------------------------------------------------------------------------- 00019 #if defined(_MSC_VER) || defined(__BORLANDC__) 00020 #include <cstring> 00021 #include <cstdio> 00022 #include <cstdlib> 00023 #include <ctime> 00024 #include <algorithm> 00025 #include <map> 00026 #include <sstream> 00027 #include <iomanip> 00028 #include <cmath> 00029 #include "ZenLib/Conf.h" 00030 #include "ZenLib/Conf_Internal.h" 00031 #endif //defined(_MSC_VER) || defined(__BORLANDC__) 00032 //--------------------------------------------------------------------------- 00033 00034 #endif