I'm reading some data from a plist file in visual c++.
data in file is somethig like this:
Caminando_001.png x y width height offsetX offsetY originalWidth originalHeight
I read until x key value and then I do something like
int Left = boost::any_cast(iter->second); //iter is a pair std::string boost::any
That last line trows an exception (any bad cast) and I don't know what is the problem.