home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / CONTRIB / MBASE / MBASE51.TAR / mbase51 / examples / example6.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-04  |  446 b   |  20 lines

  1. /*
  2.  * This header file was created to reflect the structure of the relation
  3.  * example6.rel; header built on Fri Sep 3 1993 at 8:17 pm.
  4.  *
  5.  * MetalBase 5.1 released January 1st, 1993 by Huan-Ti.
  6.  *
  7.  */
  8.  
  9. #ifndef EXAMPLE6_H
  10. #define EXAMPLE6_H
  11.  
  12. typedef struct
  13.    {
  14.    char     tape[20];         /* field tape type string length 20            */
  15.    double   price;            /* field price type money                      */
  16.    } example6;
  17.  
  18. #endif
  19.  
  20.