if (enfSeparator == "__ENFORCED_VERTICES_END__")
break; // __ENFORCED_VERTICES_END__
if (enfSeparator != "__BEGIN_VERTEX__")
- throw std::exception::exception();
+ throw std::exception();
while (isOK) {
isOK = (load >> enfSeparator);
isOK = (load >> enfGeomEntry);
isOK = (load >> enfSeparator); // __END_ENTRY__
if (enfSeparator != "__END_ENTRY__")
- throw std::exception::exception();
+ throw std::exception();
MESSAGE("enfGeomEntry: " <<enfGeomEntry);
}
isOK = (load >> enfCoords[0] >> enfCoords[1] >> enfCoords[2]);
isOK = (load >> enfSeparator); // __END_COORDS__
if (enfSeparator != "__END_COORDS__")
- throw std::exception::exception();
+ throw std::exception();
MESSAGE("enfCoords: " << enfCoords[0] <<","<< enfCoords[1] <<","<< enfCoords[2]);
}