Removed PropertyExpressionEngine::getPaths() method.
This commit is contained in:
parent
145452120c
commit
cab8111292
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user