///////////////////////// FeatureObject //////////////////////////////////
| 24 | |
| 25 | ////////////////////////////// FeatureObject ////////////////////////////////// |
| 26 | FeatureObject::FeatureObject(FeatureFactory *factory) |
| 27 | { |
| 28 | assert(factory != nullptr); |
| 29 | m_factory = factory; |
| 30 | |
| 31 | factory->registerInstance(this); |
| 32 | } |
| 33 | |
| 34 | const char * |
| 35 | FeatureObject::factoryName() const |
nothing calls this directly
no test coverage detected