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

Method getExportModules

src/App/Application.cpp:1808–1821  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1806}
1807
1808std::vector<std::string> Application::getExportModules(const std::string& extension) const
1809{
1810 std::vector<std::string> modules;
1811 for (const auto & it : _mExportTypes) {
1812 const std::vector<std::string>& types = it.types;
1813 for (const auto & jt : types) {
1814 if (boost::iequals(extension, jt)) {
1815 modules.push_back(it.module);
1816 }
1817 }
1818 }
1819
1820 return modules;
1821}
1822
1823std::vector<std::string> Application::getExportModules() const
1824{

Callers 2

sGetExportTypeMethod · 0.80
processCmdLineFilesMethod · 0.80

Calls 6

reserveMethod · 0.80
push_backMethod · 0.45
sizeMethod · 0.45
beginMethod · 0.45
endMethod · 0.45
eraseMethod · 0.45

Tested by

no test coverage detected