Class browser confused about similar members
Open Source C & C++ IDE for Windows
Brought to you by:
claplace
Class browser seems to have a problem identifying some
similar members. Members called "put" appear in two
different classes and are overloaded with the same
prototypes. The members appear correctly in the first
class (first alphabetically and first declared) but do not
appear in the other class. Instead, they appear as
global functions. Both of these members are prototyped
in the class definition and implemented later in the code.
Source code is attached.
c++ source code
Logged In: YES
user_id=1191707
I noticed that I was incorrect about prototyping the
members. The members were declared inline in the first class
and prototyped in the second class. When I changed the
first class to prototype the members and implement them
later, the class browser began behaving properly. So it
appears the problem is due the fact the members with the
same name were declared inline in one class and not in
another class.