I'm trying to develop an iPhone app using the Linea Pro 5 SDK and Delphi XE5. I am translating the lineaSDK.h
file to Delphi and I do not know how to translate this line from the SDK:
@interface Linea : NSObject
...
/**
Creates and initializes new Linea class instance or returns already initalized one. Use this function, if you want to access the class from different places
@return shared class instance
**/
+(id)sharedDevice` // <--- this is where I am getting stumped.
...
I've read the Apple documentation on what (id) is and have Googled for a hint but to no avail. Any ideas?