From: "何平" Date: 2011-02-26T11:17:58+09:00 Subject: c++ swig class => ruby class ------=_NextPart_000_001E_01CBD59E.6D767560 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: quoted-printable Hi. everyone For example I have these class class CallbackIF{ ... virtual void onMouseClick(); ... }; class EventDispatcher{ CallbackIF* lpCallback; void fun(){ ... lpCallback->onMouseClick(); ... } }; so I want to generate CallbackIF a ruby wrapper, exceed it, rewrite the = onMouseClick function, and set it into EventDispatcher. so that I can = implement click callback in ruby code. is that possible? If not, how can I have callback-like access? thanks ------=_NextPart_000_001E_01CBD59E.6D767560--