|
As the title.
class CA
{
private:
public:
virtual BOOL Test () {return FALSE;}
CA () {}
~ CA () {}
}
It stands to reason that Test () should be listed in Properties-> Rewrite so that it can be rewritten; But why are the virtual functions in the classes of MFC library functions listed? |
|