| 34 | } |
| 35 | |
| 36 | bool AnnotationList::addGroup(const std::shared_ptr<AnnotationGroup>& group) { |
| 37 | if (group) { |
| 38 | _groups.push_back(group); |
| 39 | return true; |
| 40 | } |
| 41 | return false; |
| 42 | } |
| 43 | |
| 44 | bool AnnotationList::addAnnotation(const std::shared_ptr<Annotation>& annotation) { |
| 45 | if (annotation) { |
no outgoing calls
no test coverage detected