00001 /* 00002 * Portability.hh 00003 * 00004 * Copyright 2001, LifeLine Networks BV (www.lifeline.nl). All rights reserved. 00005 * Copyright 2001, Bastiaan Bakker. All rights reserved. 00006 * 00007 * See the COPYING file for the terms of usage and distribution. 00008 */ 00009 00010 #ifndef _LOG4CPP_PORTABILITY_HH 00011 #define _LOG4CPP_PORTABILITY_HH 00012 00013 #if defined (_MSC_VER) || defined(__BORLANDC__) 00014 # include <log4cpp/config-win32.h> 00015 #else 00016 # include <log4cpp/config.h> 00017 #endif 00018 00019 #if defined(_MSC_VER) 00020 # pragma warning( disable : 4786 ) 00021 #endif 00022 00023 #endif