I advise VA Add an function [move member-func to other class] on Refactor menus.
In the Refactor process.Sometimes WE think some member-function is more reasonable to place other class.So If I need accomplish this.
I must change the 3 place and 3 more steps as least.
(1)Change the class-name to new in cpp where the function body located.
(2)copy the declare in old class .and paste it on new class.
(3)move the function body to the right place.
BOOL CalBase::ValidateFlangeWeld(const CForce &F, double*pAf/*=NULL*/)const
So VA may deal with this.Like"Move the imp to source".
This make sense.
Really in practice,I almost need move a group functoins with similar-feature,may 2.,3 or 4...functions.
Is really tedious and low-level efficiency.