/* Filename: parts.h Author: Br. David Carlson Date: February 23, 1998 Last Modified: February 20, 2013 This header file sets up a type for a record that contains info about any kind of part stored in a warehouse. */ #include using namespace std; const int DescripMax = 64; typedef char DescripString[DescripMax]; struct PartType { int ID; int NumInStock; float Price; DescripString Descrip; };