home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) IBM Corp. 1992 */
- #ifndef _IGLOBALS_H
- #define _IGLOBALS_H
-
- #include <iabbrev.h>
-
- typedef int Boolean;
- const Boolean False = 0;
- const Boolean True = 1;
-
- typedef unsigned long INumber;
- typedef unsigned long IPosition;
-
- // enum IBoundIndicator {IUnbounded, IBounded};
-
- enum IBoundIndicator {IUnbounded}; // IBounded not yet implemented
-
- enum ITreeIterationOrder {IPreorder, IPostorder};
-
- #include <istdops.h>
-
- #include <iiter.h>
-
- #endif