davfuenmayor / ruby-doxygen-parser

Ruby library that uses Doxygen XML output to parse and query C++ header files
MIT License
4 stars 2 forks source link

Files with underscore handled incorrectly #2

Open kugel- opened 9 years ago

kugel- commented 9 years ago

I have a file named ui_utils.h. The doxygen file is uiutils_8h.xml. Doxyparser doesn't seem to know that doxygen tranforms the single underscore into two, so Doxyparser::parse_file("ui_utils.h") fails. However, Doxyparser::parse_file("uiutils.h") seems to work.

Workaround is easy enough but it's still a bug right?