[Doxygen-users] Hiding classes / files in doxygen output
Brought to you by:
dimitri
|
From: Rainer W. <Rai...@in...> - 2001-08-08 11:39:13
|
First: I tried to search the archive, but searching failed. So please
forgive me if I ask a FAQ.
I have a couple of classes that are kind of "internal", i.e. they are
of interest for someone who works on _this_ module, but not for "users"
of the module. I would like to have two different doxyfiles that
do the following:
- file 1 generates docs for all classes, also the "internal" ones
- file 2 only generates docs for the "non-internal" classes
I tried the following:
<code>
/*! \if ModuleInternals
\brief (short description)
(more detailed description)
\endif
*/
class MyClass
{
public:
/*! \if ModuleInternals
\brief Constructor
\endif
*/
MyClass (...)
</code>
_without_ including "ModuleInternals" in ENABLED_SECTIONS
and
<code>
/*! \internal
\brief (short description)
(more detailed description)
*/
class MyClass
{
public:
/*! \internal
\brief Constructor
*/
MyClass (...)
</code>
together with INTERNAL_DOCS = NO
However, both approaches generated pages and documentation for the
class. Did I miss an option that changes the behaviour? Is this a
bug and if it is, is it fixed in the latest version (I use V 1.2.0)?
--
-- -----------------------------------------------------------------
-- Dipl.-Inform. Rainer Wiesenfarth
-- Inpho GmbH E-mail: Rai...@In...
-- Smaragdweg 1 Phone : +49 711 22881-10
-- 70174 Stuttgart Fax : +49 711 22881-11
-- Germany URL : http://www.inpho.de
|