blob: c311206b2fd92bb9c37fa5819b8f9d40763dad43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{ Parsed from EventKit.framework EKStructuredLocation.h }
{$ifdef TYPES}
type
EKStructuredLocationPtr = ^EKStructuredLocation;
{$endif}
{$ifdef CLASSES}
type
EKStructuredLocation = objcclass external (EKObject, NSCopyingProtocol)
private
public
class function locationWithTitle (title: NSString): EKStructuredLocation; message 'locationWithTitle:';
procedure setTitle(newValue: NSString); message 'setTitle:';
function title: NSString; message 'title';
procedure setGeoLocation(newValue: CLLocation); message 'setGeoLocation:';
function geoLocation: CLLocation; message 'geoLocation';
procedure setRadius(newValue: double); message 'setRadius:';
function radius: double; message 'radius';
{ Adopted protocols }
function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
end;
{$endif}
|