| 3943 | } |
| 3944 | |
| 3945 | std::vector<DocumentObject*> Document::getObjectsWithExtension(const Base::Type& typeId, |
| 3946 | const bool derived) const |
| 3947 | { |
| 3948 | |
| 3949 | std::vector<DocumentObject*> Objects; |
| 3950 | for (auto it : d->objectArray) { |
| 3951 | if (it->hasExtension(typeId, derived)) { |
| 3952 | Objects.push_back(it); |
| 3953 | } |
| 3954 | } |
| 3955 | return Objects; |
| 3956 | } |
| 3957 | |
| 3958 | |
| 3959 | std::vector<DocumentObject*> |
nothing calls this directly
no test coverage detected