Check result of EDFInfo::Parse()

This commit is contained in:
Phil Olynyk 2020-04-30 12:42:05 -04:00
parent c1f986921d
commit 823266f627

View File

@ -30,7 +30,11 @@ ResMedEDFInfo::~ResMedEDFInfo() { }
bool ResMedEDFInfo::Parse( ) // overrides and calls the super's Parse
{
EDFInfo::Parse( );
if ( ! EDFInfo::Parse( ) ) {
qWarning() << "EDFInfo::Parse failed!";
sleep(1);
return false;
}
// Now massage some stuff into OSCAR's layout
int snp = edfHdr.recordingident.indexOf("SRN=");