| 166 | std::vector<std::pair<std::string, Doc>> SubDocs; // typically for enum values |
| 167 | |
| 168 | void visit(const clang::comments::Comment *C) { |
| 169 | Base::visit(C); |
| 170 | for (auto it = C->child_begin(); it != C->child_end(); ++it) |
| 171 | visit(*it); |
| 172 | } |
| 173 | |
| 174 | // Inline content. |
| 175 | //void visitTextComment(const clang::comments::TextComment *C); |