Hello. I've a generic class like :
TMyStorage < T > = class
end;
I want to add this generic class into Scripter. But I don't know how to add it. If I use something like :
DefineClassByRTTI(TMyStorage < T >) it gives error.
If I specify the type like this : DefineClassByRTTI(TMyStorage < Integer > ) It accepts but still I'm not able to use, it gives syntax error and also the purpose of generic have been lost.
I want to know if there is any way of specifying this class with generic feature.