vote up 0 vote down star

I'm trying to figure out how to wrap a boost::function member (used as an event callback) of an unmanaged class with a C++/CLI class event. I do not have control over the unmanaged class. All I can do is figure out how to write the C++/CLI class properly.

Here's the example unmanaged class:

class X
{
public:
    boost::function<void (double)> XChanged;;

    void Set(double x)
    {
        XChanged(x)
    }
};

I've tried many things, but I keep running into problems. I'm sure it's easier than it appears to be. Any help would be greatly appreciated!

flag
What errors are you getting? – GMan Apr 25 at 16:21

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.