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

Method getImportTypes

src/App/Application.cpp:1632–1642  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1630}
1631
1632std::vector<std::string> Application::getImportTypes(const std::string& Module) const
1633{
1634 std::vector<std::string> types;
1635 for (const auto & it : _mImportTypes) {
1636 if (boost::iequals(Module, it.module)) {
1637 types.insert(types.end(), it.types.begin(), it.types.end());
1638 }
1639 }
1640
1641 return types;
1642}
1643
1644std::vector<std::string> Application::getImportTypes() const
1645{

Callers 3

sGetImportTypeMethod · 0.80
activatedMethod · 0.80
freecadCanOpenFunction · 0.80

Calls 4

insertMethod · 0.45
endMethod · 0.45
beginMethod · 0.45
eraseMethod · 0.45

Tested by

no test coverage detected