#include #include #include using namespace std; void OpenFile(void); void GetBlank(void); void ProcessLine(void); int main() { // open the file OpenFile(); // read the four blank values from the file GetBlank(); GetBlank(); GetBlank(); GetBlank(); // tell the story // get a line // while (not end of file) { ProcessLine(); // get a line // } return 0; } void OpenFile(void){ cout << "In Open Files" << endl; return; } void GetBlank(void){ cout << "In Get Blank " << endl; return; } void ProcessLine(void){ cout << "In Process Line" << endl; return; }