You must be registered to post a reply. Click here to register.
T O P I C R E V I E W
MikMik
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!
1 L A T E S T R E P L I E S (Newest First)
accord
Posted - Nov 14 2017 : 11:32:27 AM We're considering to implement this at some point:
case=61242
Thank you for the feedback, this sounds like a good idea. I've noted your interest in the case.