I\'m trying to use a C library in a C++ app and have found my self in the following situation (I know my C, but I\'m fairly new to C++). On the C side I have a collection of
I don't think you can: operator() in a function object is really a member function, and C doesn't know anything about those.
operator()
What you should be able to use are free C++ functions, or static functions of classes.