MCPcopy Create free account
hub / github.com/OSGeo/gdal / GetSubAlgorithmNames

Method GetSubAlgorithmNames

gcore/gdalalgorithm.cpp:3661–3670  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3659/************************************************************************/
3660
3661std::vector<std::string> GDALAlgorithm::GetSubAlgorithmNames() const
3662{
3663 std::vector<std::string> ret = m_subAlgRegistry.GetNames();
3664 const auto other = GDALGlobalAlgorithmRegistry::GetSingleton()
3665 .GetDeclaredSubAlgorithmNames(m_callPath);
3666 ret.insert(ret.end(), other.begin(), other.end());
3667 if (!other.empty())
3668 std::sort(ret.begin(), ret.end());
3669 return ret;
3670}
3671
3672/************************************************************************/
3673/* GDALAlgorithm::AddArg() */

Callers 5

TEST_FFunction · 0.80
checkFunction · 0.80
test_algorithmFunction · 0.80
GetAutoCompleteMethod · 0.80

Calls 6

GetNamesMethod · 0.80
insertMethod · 0.45
endMethod · 0.45
beginMethod · 0.45
emptyMethod · 0.45

Tested by 2

TEST_FFunction · 0.64
test_algorithmFunction · 0.64