[Doxygen-users] Hiding an internal class
Brought to you by:
dimitri
From: David D. <dav...@gm...> - 2011-04-23 15:09:18
|
I want a class to be hidden in the html output. I tried: 1) /** \class ShowProgressObject \brief ShowProgressObjectBrief \internal */ class ShowProgressObject { public: ... and 2) /** \class ShowProgressObject \brief ShowProgressObjectBrief \cond INTERNAL */ class ShowProgressObject { public: ... and in both cases the ShowProgressObject class is still shown in the html. How would I hide this class? Thanks, David |