Class method registration

Hello,
I am trying to register a class (static) method but it does not work.

Lets say you have this
TMyClass = class
public
class procedure writeoutput(a: ansistring);
end;

Is it supported and if not is there any workaround?

Thank you very much
Regards,
Jakub

Not currently no. But you could expose them as regular methods.

Thank you very much