| 29 | class StringTransformer : public std::function<const char*(const char*)> { |
| 30 | public: |
| 31 | StringTransformer( const UnaryOperator& op_ ): op(op_), buffer(){} |
| 32 | ~StringTransformer(){} |
| 33 | |
| 34 | const char* operator()(const char* input ) { |
nothing calls this directly
no outgoing calls
no test coverage detected