Nic Ferrier <nferrier(at)tapsellferrier(dot)co(dot)uk> writes:
> I need to have a C++ class become a dynamically linked function.
> Can I use PG_FUNCTION_INFO_V1 on a class method?
Only if it matches the expected signature, which is going to force
you to make it a static method. You'll probably want to have a set
of static linking methods that call into the regular methods of
the class.
regards, tom lane