/* Query.h
 *
 */
 
#include <iostream>                    // cin, cout, >>, <<
#include <fstream>                     // ifstream, ofstream
#include <string>                      // string, getline()
using namespace std;

// --- Open an ifstream interactively ---------------------

void interactiveOpen(ifstream & theIFStream);

// --- Open an ofstream interactively ---------------------

void interactiveOpen(ofstream & theOFStream);
