summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/DefinedClassesMapKit.pas
blob: b81316d0dad4b7887703b7b17a45e443169f87ca (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{$mode delphi}
{$modeswitch objectivec1}
{$modeswitch cvar}
{$packrecords c}

unit DefinedClassesMapKit;
interface

type
  MKAnnotationView = objcclass external;
  MKCircle = objcclass external;
  MKCircleRenderer = objcclass external;
  MKDirections = objcclass external;
  MKDirectionsRequest = objcclass external;
  MKDirectionsResponse = objcclass external;
  MKDistanceFormatter = objcclass external;
  MKETAResponse = objcclass external;
  MKGeodesicPolyline = objcclass external;
  MKLocalSearch = objcclass external;
  MKLocalSearchRequest = objcclass external;
  MKLocalSearchResponse = objcclass external;
  MKMapCamera = objcclass external;
  MKMapItem = objcclass external;
  MKMapSnapshot = objcclass external;
  MKMapSnapshotOptions = objcclass external;
  MKMapSnapshotter = objcclass external;
  MKMapView = objcclass external;
  MKMultiPoint = objcclass external;
  MKOverlayPathRenderer = objcclass external;
  MKOverlayRenderer = objcclass external;
  MKPinAnnotationView = objcclass external;
  MKPlacemark = objcclass external;
  MKPointAnnotation = objcclass external;
  MKPolygon = objcclass external;
  MKPolygonRenderer = objcclass external;
  MKPolyline = objcclass external;
  MKPolylineRenderer = objcclass external;
  MKRoute = objcclass external;
  MKRouteStep = objcclass external;
  MKShape = objcclass external;
  MKTileOverlay = objcclass external;
  MKTileOverlayRenderer = objcclass external;
  MKUserLocation = objcclass external;
  MKAnnotationProtocol = objcprotocol external name 'MKAnnotation';
  MKMapViewDelegateProtocol = objcprotocol external name 'MKMapViewDelegate';
  MKOverlayProtocol = objcprotocol external name 'MKOverlay';

type
  CLLocation = objcclass external;
  MKUserLocationInternal = objcclass external;

implementation
end.