You are not logged in.
Hi.
I tried to use template CrossPlatform.pas.mustache to generate client module but i have empty function and procedure names
in example like this:
type
/// service implemented by TServiceDir
// - you can access this service as such:
// !var aDir: IDir;
// !begin
// ! aDir := TServiceDir.Create(aClient);
// ! // now you can use aDir methods
// !...
IDir = interface(IServiceAbstract)
['{CE9A54A2-E524-4C9F-9573-E885BD4D875E}']
function
end;
This interface is declared
IDir = interface(iinvokable)
['{CE9A54A2-E524-4C9F-9573-E885BD4D875E}']
Function Groups():RawJSON;
end;
How can i fix this?
Offline
Try with lowercase 'f' in 'Function'.
Offline