Re: [Doxygen-users] XML: No references from non-referenced functions
Brought to you by:
dimitri
From: Ilya S. <ily...@ya...> - 2015-03-05 08:43:34
|
Oh, sorry, I didn't turn HTML off... Hi, I have two members, say void Class:foo() { bar(); } void Class:bar() { // do something } and `Class:foo()` is **not** called from anywhere. If now I produce XML file with REFERENCED_BY_RELATION = YES , there will NO `<referencedby>` tag for `Class:bar()` method. It seems like Doxygen doesn't include references from non-referenced functions. How can I avoid it and obtain all function references? Best regards, Ilya. P.S. In real case, Class:foo() is a Qt slot, but all the above is true for regular functions too. |