#ifndef PARSERELEASE_H #define PARSERELEASE_H // parserelease.h Contains prototype for GetReleaseInfo #include // For ifstream/ofstream #include // For strings & string functions #include "releaselist.h" // For ReleaseListType #include "parsesection.h" // For ReadRecord,AnotherRecord #include "balerrors.h" // For WriteLabelError,WriteDataError using namespace std; void GetReleaseInfo(ifstream& inputFile,ofstream& outputFile,string FileName, ReleaseListType& ReleaseList); #endif