MCPcopy Create free account
hub / github.com/FreeCAD/FreeCAD / getDocuments

Method getDocuments

src/App/Application.cpp:756–763  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

754}
755
756std::vector<Document*> Application::getDocuments() const
757{
758 std::vector<Document*> docs;
759 docs.reserve(DocMap.size());
760 for (const auto & it : DocMap)
761 docs.push_back(it.second);
762 return docs;
763}
764
765std::string Application::getUniqueDocumentName(const char* Name, bool tempDoc) const
766{

Callers 15

syncCopyOnChangeMethod · 0.80
recomputeMethod · 0.80
sListDocumentsMethod · 0.80
getDocumentMethod · 0.80
getMethod · 0.80
initMethod · 0.80
contextMenuEventMethod · 0.80
closeAllDocumentsMethod · 0.80
delayedStartupMethod · 0.80
isActiveMethod · 0.80
_dataMethod · 0.80

Calls 3

reserveMethod · 0.80
sizeMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected