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

Method getExportTypes

src/App/Application.cpp:1835–1845  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1833}
1834
1835std::vector<std::string> Application::getExportTypes(const std::string& Module) const
1836{
1837 std::vector<std::string> types;
1838 for (const auto & it : _mExportTypes) {
1839 if (boost::iequals(Module, it.module)) {
1840 types.insert(types.end(), it.types.begin(), it.types.end());
1841 }
1842 }
1843
1844 return types;
1845}
1846
1847std::vector<std::string> Application::getExportTypes() const
1848{

Callers 1

sGetExportTypeMethod · 0.80

Calls 4

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

Tested by

no test coverage detected