Menu

#1 inline members are not shown

open
nobody
None
5
2001-05-09
2001-05-09
No

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.

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.