How can i access a protected member function in other class??
afx_msg void OnABC();
I need to access this function from other class. Any methods?
I tried to use a public function to access it.
But i got an error :
for using CmdView::get_ABC(); in the other class function.Quote:
error C2352: 'CmdView::get_ABC' : illegal call of non-static member function
Thanks a lot.
