#ifndef LIMITS_H
#define LIMITS_H 1

/*  maxima & minima    */
#define MaxInt          2147483647
#define MinInt         -2147483648
#define MaxShort        32767
#define MinShort       -32767		/* NOT -32768, due to the way ACE
					** classifies integers during 
					** compilation. 
					*/
#define MaxReal         9.22337177E+18
#define MinReal        -9.22337177E+18
#define MAXSTRINGLEN    1024&

#endif
