Re: [Doxygen-users] Hiding an internal class
Brought to you by:
dimitri
From: Allen W. <wi...@kd...> - 2011-04-29 17:01:11
|
On Friday 29 April 2011 10:39:31 AM David Doria wrote: > On Sat, Apr 23, 2011 at 11:09 AM, David Doria <dav...@gm...> wrote: > > > 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 > > > > Any thoughts on this? > I use the following and it works for me. You can go back later and tell doxygen to define PRIVATE if you ever want that <code> documented. // @cond PRIVATE <code> //@endcond |