

目前只能显示 .h 中函数的注释,不能显示.cpp 中函数的注释,
token 的注释分为两种
```
/** doxygen style comments */
wxString m_Doc;
/** doxygen style comments in the Impl file */
wxString m_ImplDoc;
```
m_Doc 就是 .h 中的注释
m_ImplDoc 则比较迷,包含所有的注释


所以如果要 m_Doc + m_ImplDoc 的话,结果就是 大的红框,会显示不该显示的注释