Hi all.
I have something like this (simplified):
class Foo
{
private:
class Bar
{
};
};
However unlike private member functions and private member variables the
private class still gets added to the docs, even when options EXTRACT_ALL
and EXTRACT_PRIVATE are both unchecked.
Have I overseen some option or will I have to explicitly remove such
private inner classes one by one with @cond @endcond blocks?
Thanks in advance for your help,
Stefan.
|