00001 /* $Id: CoinPragma.hpp 1215 2009-11-05 11:03:04Z forrest $ */ 00002 // Copyright (C) 2000, International Business Machines 00003 // Corporation and others. All Rights Reserved. 00004 #ifndef CoinPragma_H 00005 #define CoinPragma_H 00006 00007 //------------------------------------------------------------------- 00008 // 00009 // This is a file which can contain Pragma's that are 00010 // generally applicable to any source file. 00011 // 00012 //------------------------------------------------------------------- 00013 00014 #if defined(_MSC_VER) 00015 // Turn off compiler warning about long names 00016 # pragma warning(disable:4786) 00017 // Turn off compiler warning: 00018 // "empty controlled statement found; is this the intent?" 00019 # pragma warning(disable:4390) 00020 // Turn off compiler warning about deprecated functions 00021 # pragma warning(disable:4996) 00022 #endif 00023 00024 #endif