MikMik
Senior Member
42 Posts |
Posted - Nov 14 2017 : 07:12:44 AM
|
Since, at least in C++, nonmember functions that take an object of a class type as a parameter are (or can be) part of the class's interface, it would be nice if VA could help us by listing said functions when searching for members of the class.
So if I have:
class X {//...}; int someFunction(X x/*, other args?*/);
Later, if I type:
X myobject; myobject. <- At this point, it should list all the members of X, plus someFunction
Of course, then it should rewrite it as someFunction(myobject...)
Thanks! |
|