#ifndef _Standard_values_HeaderFile # define _Standard_values_HeaderFile /* Copyright (C) 1991,1995 by MATRA DATAVISION, FRANCE This software is furnished in accordance with the terms and conditions of the contract and with the inclusion of the above copyright notice This software or any other copy thereof may not be provided or otherwise be made available to any other person. No title to an ownership of the software is hereby transferred At the termination of the contract, the software and all copies of this software must be deleted Facility : CAS-CADE V1.3A */ #if (defined(_MSC_VER) || defined(__BORLANDC__)) && !defined(WNT) #error "Wrong compiler options has been detected. Add /DWNT option for proper compilation!!!!!" #endif #include #ifndef WNT # ifdef OCE_HAVE_CLIMITS # include # elif defined (OCE_HAVE_LIMITS) # include # elif defined (OCE_HAVE_LIMITS_H) # include # else # error "check oce-config.h file or compilation options: OCE_HAVE_CLIMITS, OCE_HAVE_LIMITS, or OCE_HAVE_LIMITS_H should be defined" # endif #endif #ifdef WNT # include #endif #ifdef __MINGW32__ # include #endif #if defined (__hpux) || defined (HPUX) # ifdef MAXINT # undef MAXINT # endif #endif #ifndef BITSPERBYTE # define BITSPERBYTE CHAR_BIT #endif #ifndef BITS # define BITS(type) (BITSPERBYTE * sizeof(type)) #endif #endif