/* Filename: ItemType.h Programmer: Br. David Carlson Date: October 10, 1997 Modified: August 8, 1998 and June 27, 2000 This header file sets up the data type ItemType. If you change this type you may need to add overloaded operators for =, ==, <, or >. */ #ifndef ITEMTYPE_H #define ITEMTYPE_H #include using namespace std; typedef float ItemType; #endif