| 94 | } |
| 95 | |
| 96 | void AnnotationList::setAnnotations(const std::vector<std::shared_ptr<Annotation> >& annotations) { |
| 97 | this->removeAllAnnotations(); |
| 98 | _annotations = annotations; |
| 99 | } |
| 100 | |
| 101 | void AnnotationList::setGroups(const std::vector<std::shared_ptr<AnnotationGroup> >& groups) { |
| 102 | this->removeAllGroups(); |
nothing calls this directly
no test coverage detected