home *** CD-ROM | disk | FTP | other *** search
/ ftptest.leeds.ac.uk / 2015.02.ftptest.leeds.ac.uk.tar / ftptest.leeds.ac.uk / bionet / CAE-GROUP / SCL-WIN3x / SCL.EXE / BASETYPE.H < prev    next >
C/C++ Source or Header  |  1994-08-06  |  653b  |  38 lines

  1. #ifndef BASETYPE_H
  2. #define    BASETYPE_H
  3.  
  4. /*
  5. * NIST STEP Core Class Library
  6. * clstepcore/baseType.h
  7. * February, 1994
  8. * David Sauder
  9. * KC Morris
  10.  
  11. * Development of this software was funded by the United States Government,
  12. * and is not subject to copyright.
  13. */
  14.  
  15. /* $Id: baseType.h,v 2.0.1.1 1994/04/05 16:36:33 sauderd Exp $ */
  16.  
  17.  
  18.  
  19. //    **************  TYPES of attributes
  20. enum BASE_TYPE {
  21.     INTEGER_TYPE = 0,
  22.     STRING_TYPE,
  23.     REAL_TYPE,
  24.     ENTITY_TYPE,
  25.     AGGREGATE_TYPE,
  26.     ENUM_TYPE,
  27.     SELECT_TYPE,
  28.     BOOLEAN_TYPE,
  29.     LOGICAL_TYPE,
  30.     NUMBER_TYPE,
  31.     BINARY_TYPE,        // DEL
  32.     GENERIC_TYPE,
  33.     REFERENCE_TYPE,        // DEL
  34.     UNKNOWN_TYPE
  35.  };
  36.  
  37. #endif 
  38.