//
// ASN1Limits.idl
//

#ifndef _ASN1LIMITS_IDL_
#define _ASN1LIMITS_IDL_

// Substitute <MAX> and <MIN> by the max and min (lowest negative) float values your
// machine can hold for IDL interfaces.

const  ASN1_Real  plus_infinity = 1.0; // <MAX>;
const  ASN1_Real  minus_infinity = -1.0; // <MIN>;

#endif /*  _ASN1LIMITS_IDL_ */

