summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/mapkit/MKPointAnnotation.inc
blob: d32d43c6d1661ab16b7999f27987d95cd5bfc4cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ Parsed from MapKit.framework MKPointAnnotation.h }


{$ifdef TYPES}
type
  MKPointAnnotationPtr = ^MKPointAnnotation;
{$endif}

{$ifdef CLASSES}

type
  MKPointAnnotation = objcclass external (MKShape)
  public
    procedure setCoordinate(newValue: CLLocationCoordinate2D); message 'setCoordinate:';
    function coordinate: CLLocationCoordinate2D; message 'coordinate';
  end;
{$endif}