/******************************************************* Proj5Aux.h CMSC-341 Spring 2004 Project5 Spencer Shimko, Section 001, sshimko1 Created: 28 April 2004 Current: 06 May 2004 Auxillary header implement a Interval Heap based on a Binary Heap I have read and I understand the course policy on cheating. By submitting the following program, I am stating that the program was produced by my individual effort. *********************************************************/ #ifndef _PROJ4AUX_H #define _PROJ4AUX_H using namespace std; #include #include #include #include #include "IntervalHeap.h" /* * parse the input file * Params: input file to parse */ bool parseIFile ( const char *, queue & ); /* * run command */ void run ( IntervalHeap &, const char* ); #endif