Removed PropertyExpressionEngine::getPaths() method.

This commit is contained in:
Eivind Kvedalen 2015-09-26 19:33:56 +02:00 committed by wmayer
parent 145452120c
commit cab8111292
2 changed files with 0 additions and 20 deletions

View File

@ -722,24 +722,6 @@ void PropertyExpressionEngine::renameObjectIdentifiers(const std::map<ObjectIden
}
}
/**
* @brief Get set of registered object identifiers.
* @return Set of object identifiers.
*/
std::set<ObjectIdentifier> PropertyExpressionEngine::getPaths() const
{
ExpressionMap::const_iterator i = expressions.begin();
std::set<ObjectIdentifier> result;
while (i != expressions.end()) {
result.insert(i->first);
++i;
}
return result;
}
PyObject *PropertyExpressionEngine::getPyObject(void)
{
Py_Return;

View File

@ -112,8 +112,6 @@ public:
void renameObjectIdentifiers(const std::map<App::ObjectIdentifier, App::ObjectIdentifier> & paths);
std::set<App::ObjectIdentifier> getPaths() const;
const App::ObjectIdentifier canonicalPath(const App::ObjectIdentifier &p) const;
size_t numExpressions() const;