CoinUtils
trunk
|
00001 /* $Id$ */ 00002 // Copyright (C) 2000, International Business Machines 00003 // Corporation and others. All Rights Reserved. 00004 // This code is licensed under the terms of the Eclipse Public License (EPL). 00005 00006 #ifndef CoinPragma_H 00007 #define CoinPragma_H 00008 00009 //------------------------------------------------------------------- 00010 // 00011 // This is a file which can contain Pragma's that are 00012 // generally applicable to any source file. 00013 // 00014 //------------------------------------------------------------------- 00015 00016 #if defined(_MSC_VER) 00017 // Turn off compiler warning about long names 00018 # pragma warning(disable:4786) 00019 // Turn off compiler warning: 00020 // "empty controlled statement found; is this the intent?" 00021 # pragma warning(disable:4390) 00022 // Turn off compiler warning about deprecated functions 00023 # pragma warning(disable:4996) 00024 #endif 00025 00026 #endif