//----------------------------------- // Filename: Proj2Aux.H // Author : DL Frey // Date : 2/21/03 // Project : CMSC 202, Spring 03, Project 2 // Section : 123 // SSN : xxx-xx-1234 // Description // This file contains the prototypes of functions // implemented in Proj2Aux.C and used by main() // in proj2.C //----------------------------------------------- #ifndef PROJ2_AUX_H #define PROJ2_AUX_H #include "Quadrilateral.H" using namespace std; void InputCorners (Quadrilateral& quadrilateral); void DisplayQuadrilateral (const Quadrilateral& quadrilateral); #endif