[Doxygen-users] abstract class (struct) not documented when Q_SIGNALS: is used inside it
Brought to you by:
dimitri
From: Philipp K. <phi...@gm...> - 2013-11-06 11:20:03
|
Given this struct in a .h file: /** Shows an application introduction to the user. */ struct WelcomeExperience { virtual ~WelcomeExperience() {} /** Displays the welcome window on the screen. */ virtual void show() = 0; Q_SIGNALS: /** This signal is emitted when the user finished the welcome experience or canceled it. */ void done(); }; No documentation is generated for it, unless I remove the Q_SIGNALS part. I am using doxygen 1.8.5 |