inline members are not shown
Brought to you by:
bwcto
It appeas that the OO-browser does not show inline
member funtions. For example:
class ConfigIter
{
SegConfigIter seg;
IndexConfigIter* config;
int ok_flag;
public:
ConfigIter(const SuperSystemInfo&
s);
void operator++();
void operator++(int n)
{ ++(*this); }
const IndexConfig& operator()() const
{
const IndexConfigIter& ii = *config;
return ii();
}
int ok() const { return ok_flag; }
};
generates with f = features
ConfigIter
+ ConfigIter
- operator++
both the data members and the inline function members
are missing from the display.