/*************************************** ** Header file for struct Date and ** associated functions ***************************************/ #include #include #include using namespace std; #ifndef DATEHEADER #define DATEHEADER struct Date { int m, d, y; }; void read(Date&,istream&); void write(Date,ostream&); #endif