{$mode objfpc}{$H+} unit ub0674; interface type TMyClass = class public generic function CreateObjectFromJSONString(AJSONString: String; ADescriptionTag: string = ''): T; end; implementation generic function TMyClass.CreateObjectFromJSONString(AJSONString: String; ADescriptionTag: string): T; begin Result:=Nil;//T.Create; end; end.