DefinedClassesMapKit.pas 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {$mode delphi}
  2. {$modeswitch objectivec1}
  3. {$modeswitch cvar}
  4. {$packrecords c}
  5. {$IFNDEF FPC_DOTTEDUNITS}
  6. unit DefinedClassesMapKit;
  7. {$ENDIF FPC_DOTTEDUNITS}
  8. interface
  9. type
  10. MKAnnotationView = objcclass external;
  11. MKCircle = objcclass external;
  12. MKCircleRenderer = objcclass external;
  13. MKDirections = objcclass external;
  14. MKDirectionsRequest = objcclass external;
  15. MKDirectionsResponse = objcclass external;
  16. MKDistanceFormatter = objcclass external;
  17. MKETAResponse = objcclass external;
  18. MKGeodesicPolyline = objcclass external;
  19. MKLocalSearch = objcclass external;
  20. MKLocalSearchRequest = objcclass external;
  21. MKLocalSearchResponse = objcclass external;
  22. MKMapCamera = objcclass external;
  23. MKMapItem = objcclass external;
  24. MKMapSnapshot = objcclass external;
  25. MKMapSnapshotOptions = objcclass external;
  26. MKMapSnapshotter = objcclass external;
  27. MKMapView = objcclass external;
  28. MKMultiPoint = objcclass external;
  29. MKOverlayPathRenderer = objcclass external;
  30. MKOverlayRenderer = objcclass external;
  31. MKPinAnnotationView = objcclass external;
  32. MKPlacemark = objcclass external;
  33. MKPointAnnotation = objcclass external;
  34. MKPolygon = objcclass external;
  35. MKPolygonRenderer = objcclass external;
  36. MKPolyline = objcclass external;
  37. MKPolylineRenderer = objcclass external;
  38. MKRoute = objcclass external;
  39. MKRouteStep = objcclass external;
  40. MKShape = objcclass external;
  41. MKTileOverlay = objcclass external;
  42. MKTileOverlayRenderer = objcclass external;
  43. MKUserLocation = objcclass external;
  44. MKAnnotationProtocol = objcprotocol external name 'MKAnnotation';
  45. MKMapViewDelegateProtocol = objcprotocol external name 'MKMapViewDelegate';
  46. MKOverlayProtocol = objcprotocol external name 'MKOverlay';
  47. type
  48. CLLocation = objcclass external;
  49. MKUserLocationInternal = objcclass external;
  50. implementation
  51. end.