| 274 | public: |
| 275 | |
| 276 | SignedFactory( |
| 277 | Factory_Base<Class>* fact_, |
| 278 | ValidConstructor valid_, |
| 279 | const char* doc |
| 280 | ) : fact(fact_), valid(valid_), docstring(doc == 0 ? "" : doc){} |
| 281 | |
| 282 | Factory_Base<Class>* fact ; |
| 283 | ValidConstructor valid ; |
nothing calls this directly
no outgoing calls
no test coverage detected