| 113 | typedef char Ch; |
| 114 | |
| 115 | FilterKeyReader(InputStream& is, const Ch* keyString, SizeType keyLength) : |
| 116 | is_(is), keyString_(keyString), keyLength_(keyLength), parseResult_() |
| 117 | {} |
| 118 | |
| 119 | // SAX event flow: reader -> filter -> handler |
| 120 | template <typename Handler> |
nothing calls this directly
no outgoing calls
no test coverage detected