stubgen
stubgen copied to clipboard
a member function stub generator for C++
Parse error on : ``` typedef std::function IntGetter; std::function converter; int h(std::function); ``` and any ``std::function`` template parameter (seems like the '(' and ')' are not supported so no function...
Parse error on sized enumerations: ``` enum Type : size_t { salsa,mayo,mustard } ``` ``` enum Type : size_t parse error on ^ ```
namesapce a { class B { void fun(); }; } stubgen will generate void a::B::fun() {} but it should be namespace a { void B::fun() {} }
namsepace some { class ForwordClass; class B { }; } stubgen parser failed It caused by namsespace issue. when ignore namsespace, it will be ok.