Hi,
Consider the following class hierarchy:
class Figure
{
public:
virtual double Area() = 0;
};
class Square : public Figure
{
public:
virtual double Area();
};
double Square::Area()
{
return 0.0;
}
class Circle : public Figure
{
public:
virtual double Area();
};
double Circle::Area()
{
return 0.0;
}
VAX "Find Symbol" gives a flat ListView when I search for "area",
wouldn't be more visible if it had provided a tree view, the parent
being the Figure::Area.
Here is what I have in mind:
Cheers!
Edit:
Why not highlighting the searched symbol? Like this: