Toponaming: remove unused method with compile warnings

This commit is contained in:
bgbsww
2024-06-02 13:37:01 -04:00
committed by Chris Hennes
parent 87a7bc1d81
commit 82db79b699
2 changed files with 0 additions and 10 deletions

View File

@@ -278,12 +278,4 @@ std::vector<const char*> GeoFeature::getElementTypes(bool /*all*/) const
return prop->getComplexData()->getElementTypes();
}
std::vector<Data::IndexedName> GeoFeature::getHigherElements(const char* element, bool silent) const
{
auto prop = getPropertyOfGeometry();
if (!prop) {
return {};
}
return prop->getComplexData()->getHigherElements(element, silent);
}
#endif

View File

@@ -179,8 +179,6 @@ public:
virtual std::vector<const char *> getElementTypes(bool all=true) const;
/// Return the higher level element names of the given element
virtual std::vector<Data::IndexedName> getHigherElements(const char *name, bool silent=false) const;
protected:
void onChanged(const Property* prop) override;