#ifndef PARSEBALL_H #define PARSEBALL_H // parseball.h Contains prototype of GetBallInfo #include // For ifstream/ofstream #include // For strings & string functions #include "balllist.h" #include "parsesection.h" // For ReadRecord,AnotherRecord #include "balerrors.h" // For WriteLabelError,WriteDataError using namespace std; // Function that checks the ball records section of the BAM file void GetBallInfo(ifstream& inputFile,ofstream& outputFile,string FileName, BallListType& BallList); #endif