home *** CD-ROM | disk | FTP | other *** search
- // ========================================================================
- // TODB LIBRARY
- // boolean.h
- //
- // Version: see TODB.H file
- //
- // Copyright 1993 Christian Thérien
- // All rights reserved
- // ========================================================================
-
-
- #ifndef _BOOLEAN_H
- #define _BOOLEAN_H
-
- enum Boolean
- {
- False = 0,
- True = 1
- };
-
- #endif // _BOOLEAN_H
-