| 621 | TopicModel(const TopicModel&) = default; |
| 622 | |
| 623 | std::unique_ptr<ITopicModel> copy() const override |
| 624 | { |
| 625 | auto ret = std::make_unique<_Derived>(*static_cast<const _Derived*>(this)); |
| 626 | ret->updateForCopy(); |
| 627 | return ret; |
| 628 | } |
| 629 | |
| 630 | size_t getNumDocs() const override |
| 631 | { |
nothing calls this directly
no test coverage detected