#include #include using namespace std; struct inputter { ifstream in; string fname; string line; int pos, linenum; inputter(string fn); inputter(); void init(); void openfile(string fn); void refill(); char get(); void unget(); void error(string msg); };