A problem which it will solve:
We have a large application with a database. And there are many tables, which have integer columns like RuleType, Platform, TypeId etc.
In our C++ code they are mapped to enums, which not always have same names and are located in different .h files.
And if I need to find what 388 in the current row in the database means, sometimes I need to spend a couple of minutes, because enums in C++ can be like this:
enum InternalPlatform
{
....
Platform1 = 385,
Platform2,
Platform3,
Platform4,
....
};
It would be much easier to use a special search window which will show all enum elements in the solution, which value is 388.