00001 /* 00002 This file is part of the BIAS library (Basic ImageAlgorithmS). 00003 00004 Copyright (C) 2003-2009 (see file CONTACT for details) 00005 Multimediale Systeme der Informationsverarbeitung 00006 Institut fuer Informatik 00007 Christian-Albrechts-Universitaet Kiel 00008 00009 00010 BIAS is free software; you can redistribute it and/or modify 00011 it under the terms of the GNU Lesser General Public License as published by 00012 the Free Software Foundation; either version 2.1 of the License, or 00013 (at your option) any later version. 00014 00015 BIAS is distributed in the hope that it will be useful, 00016 but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00018 GNU Lesser General Public License for more details. 00019 00020 You should have received a copy of the GNU Lesser General Public License 00021 along with BIAS; if not, write to the Free Software 00022 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00023 */ 00024 /** 00025 This file defines compiler pragmas for BIAS to disable some warning on WIN32 /W4 pedantic compilation mode. 00026 You MUST use the Start/End files only in pairs ! 00027 Use it like this in .cpp file: 00028 \verbatim 00029 #include <BIASpragmaStart.hh> 00030 ... code ... 00031 #include <BIASpragmaStop.hh> 00032 \endverbatim 00033 @author Jan Woetzel 08/2005 00034 */ 00035 00036 #if defined(WIN32) && defined(_MSC_VER) 00037 # pragma warning( pop ) 00038 #endif /* WIN32 & MSC */
1.5.6