Go to the documentation of this file.00001
00008
00009
00010
00011
00012 #ifndef ECL_CONFIG_WINDOWS_HPP_
00013 #define ECL_CONFIG_WINDOWS_HPP_
00014
00015
00016
00017
00018
00019 #include "ecl.hpp"
00020
00021 #if defined(ECL_IS_WIN32)
00022 #include <windows.h>
00023 #ifdef min
00024 #undef min
00025 #endif
00026 #ifdef max
00027 #undef max
00028 #endif
00029
00030 #ifdef _MSC_VER
00031 #pragma warning (disable:4996) // Disable warnings about deprecated ctime
00032 #pragma warning (disable:4290) // Disable warnings about unsupported c++ exception specifications
00033 #endif
00034 #endif
00035
00036 #endif