#ifndef PARSEALLEY_H #define PARSEALLEY_H #include // For ifstream/ofstream #include // For strings & string functions #include "alleylist.h" #include "parsesection.h" // For ReadRecord,AnotherRecord #include "balerrors.h" // For WriteLabelError,WriteDataError using namespace std; // Function that checks alley records stored in BAM file void GetAlleyInfo(ifstream& inputFile,ofstream& outputFile,string FileName, AlleyListType& AlleyList); #endif