#if 0 /********************************************* This program reads trial data from a roach experiment, reads a time from the user, and tells the user where the roach was going at that point in time. **********************************************/ #include #include #include using namespace std; /********************************************* ** PROTOTYPES & STRUCT DEFINITIONS *********************************************/ struct point { double x, y; }; struct hhmmss { int hour, min, sec; }; struct Datum { hhmmss time; point loc; } /********************************************* ** MAIN FUNCTION *********************************************/ int main() { // Open file and read heading info int N; string junk; ifstream IN("trial.txt"); IN >> N >> junk >> junk; return 0; } #endif