Problem with SAX handler class after upgrade from 3.7.3 to 3.8.0 #2235
-
After an upgrade from 3.7.3 to 3.8.0, our code currently fails to build with the error that it cannot instantiate our
and we implement all the interface functions mentioned in the documentation link above. Still, Visual Studio 2019 gives me
and I don't understand why. Are there other interface functions to implement? Why is our SaxEventConsumer class still abstract? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
OK, I think I solved my problem: it appears there is also a |
Beta Was this translation helpful? Give feedback.
OK, I think I solved my problem: it appears there is also a
bool binary(binary_t& val)
virtual function to implement in the 3.8.0 version, which isn't there in the 3.7.3 version. After implementing that one, things now compile.