home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / dos / prg / todb101 / todb / lib / boolean.h next >
Encoding:
C/C++ Source or Header  |  1994-04-21  |  417 b   |  22 lines

  1. // ========================================================================
  2. //  TODB LIBRARY
  3. //    boolean.h
  4. //
  5. //    Version: see TODB.H file
  6. //
  7. //    Copyright 1993 Christian Thérien
  8. //    All rights reserved
  9. // ========================================================================
  10.  
  11.  
  12. #ifndef _BOOLEAN_H
  13. #define _BOOLEAN_H
  14.  
  15. enum Boolean
  16. {
  17.     False = 0,
  18.     True = 1
  19. };
  20.  
  21. #endif // _BOOLEAN_H
  22.