Click to See Complete Forum and Search --> : Waht are Virtual Events


Cerf
08-23-2004, 09:48 PM
Whats up?

In VB, in a class module there is the RAISE EVENT syntax. When I port one of those functions to C++ does it become a virtual function??

bwkaz
08-24-2004, 07:42 PM
It can, if you only want to give derived classes access to the function.

Otherwise, see my previous reply to this exact same question (asked by you, I believe), and use a function pointer.