Skip to content

#1346 Missing the non-const version of EntitySeed::impl()

Metadata

Property Value
Reported by David Nies (nies.david@googlemail.com)
Reported at Aug 30, 2013 10:23
Type Feature Request
Version 2.2
Operating System Unspecified / All
Last edited by Christian Engwer (christi@conan.iwr.uni-heidelberg.de)
Last edited at Oct 16, 2013 21:32
Closed by Christian Engwer (christi@conan.iwr.uni-heidelberg.de)
Closed at Oct 16, 2013 21:32
Closed in version Unknown
Resolution Implemented
Comment

Description

In my code, I need to access the underlying implementation of an EntitySeed, and I need to modify it. But class EntitySeed only has the const version of the impl()-accessor:

const Implementation& impl() const

Other classes also offer non-const versions of impl().

So is there a special reason that EntitySeed does not have a non-const impl()? If no, could you please add this method?

P.S.: The same might apply to class GeometryReference. I don't need it myself, but there is only the const version of impl() for this class too...