/* Filename:  parts.h

   Author:  Br. David Carlson

   Date:  February 23, 1998

   Last Modified:  November 23, 2001

   This header file sets up a type for a record that contains info
   about any kind of part stored in a warehouse.
*/

#include <iostream>
using namespace std;


const int DescripMax = 64;

typedef char DescripString[DescripMax];

typedef struct
   {
   int ID;
   int NumInStock;
   float Price;
   DescripString Descrip;
   } PartType;


