/*---------------------------------------------- * File name: arygnrc.tem * Author: Xiannong Meng * Date: April 3, 1997 * Assignment: Classroom demonstration * Problem statement: This is the class template 'Array' * header file. *---------------------------------------------- */ const int DIM = 10; template class Array { public: Array(); Array(IndexType lo, IndexType hi); void ReadAry(); void PrintAry(); private: IndexType lowBound, hiBound; // boundary of the array DataType array[DIM]; };