/* Filename:  ItemType.h

   Programmer:  Br. David Carlson

   Date:  October 10, 1997

   Last Modified:  December 4, 2001

   This header file sets up the data type ItemType.  If you change
   this type you may need to add overloaded operators for =, ==,
   <, or > (by making ItemType a class).
*/

#ifndef ITEMTYPE_H
#define ITEMTYPE_H

#include <iostream>
using namespace std;

typedef float ItemType;

#endif


