| 423 | } |
| 424 | |
| 425 | AnnotationStatistics FeatureMap::getAnnotationStatistics() const |
| 426 | { |
| 427 | AnnotationStatistics result; |
| 428 | for (ConstIterator iter = this->begin(); iter != this->end(); ++iter) |
| 429 | { |
| 430 | result += iter->getAnnotationState(); |
| 431 | } |
| 432 | return result; |
| 433 | } |
| 434 | |
| 435 | |
| 436 | std::set<IdentificationDataInternal::ObservationMatchRef> FeatureMap::getUnassignedIDMatches() const |
no test coverage detected