#ifndef PARSETOOLS_H #define PARSETOOLS_H // parsetools.h Contains the prototype for GetToolsInfo #include // For ifstream/ofstream #include // For strings & string functions #include "toolslist.h" // For ToolsListType #include "parsesection.h" // For ReadRecord,AnotherRecord #include "balerrors.h" // For WriteLabelError,WriteDataError using namespace std; void GetToolsInfo(ifstream& inputFile,ofstream& outputFile,string FileName, ToolsListType& ToolsList); #endif