MKMultiPoint.inc 444 B

12345678910111213141516171819
  1. { Parsed from MapKit.framework MKMultiPoint.h }
  2. {$ifdef TYPES}
  3. type
  4. MKMultiPointPtr = ^MKMultiPoint;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. MKMultiPoint = objcclass external (MKShape)
  9. public
  10. function points: MKMapPointPtr; message 'points';
  11. function pointCount: NSUInteger; message 'pointCount';
  12. procedure getCoordinates_range (coords: CLLocationCoordinate2DPtr; range: NSRange); message 'getCoordinates:range:';
  13. end;
  14. {$endif}