#ifndef PARSESECTION_H #define PARSESECTION_H // parsesection.h contains prototypes for functions used by all of the // record-parsing functions #include // For ifstream #include // For strings #include "sectiontype.h" // For BALSectionType using namespace std; const char SECTION_DELIMITER='='; // For checking input const char RECORD_DELIMITER='-'; // const char FLD_SEPARATOR=' '; // // Check to see if there's another record coming bool AnotherRecord(ifstream& inputFile); // Pull a record out of the file into a string void ReadRecord(ifstream& inputFile,string& recordString, BALSectionType section); #endif