#ifndef BASICTYPE_H #define BASICTYPE_H #include /* this is the type for an element in the priority queue; should be defined appropriately */ typedef struct { float error; /* ... */ int otherstuff; } elemType; /* functions needed in priority queue */ float getPriority(elemType x); void printElem(elemType x); #endif