| 99 | } |
| 100 | |
| 101 | void AnnotationList::setGroups(const std::vector<std::shared_ptr<AnnotationGroup> >& groups) { |
| 102 | this->removeAllGroups(); |
| 103 | _groups = groups; |
| 104 | } |
| 105 | |
| 106 | void AnnotationList::removeGroup(const int& index) { |
| 107 | if (index < 0) { |
nothing calls this directly
no test coverage detected