| 125 | } |
| 126 | |
| 127 | void ComplementFile::printRecord(CHRPOS endPos) { |
| 128 | _outRecord.setStartPos(_currStartPos); |
| 129 | stringstream startStr; |
| 130 | startStr << _currStartPos; |
| 131 | _outRecord.setStartPosStr(startStr.str()); |
| 132 | |
| 133 | _outRecord.setEndPos(endPos); |
| 134 | stringstream endStr; |
| 135 | endStr << endPos; |
| 136 | _outRecord.setEndPosStr(endStr.str()); |
| 137 | |
| 138 | _outputMgr->printRecord(&_outRecord); |
| 139 | _outputMgr->newline(); |
| 140 | } |
no test coverage detected