Authored by Joseph G

Reworked the includes a little.

@@ -6,10 +6,6 @@ @@ -6,10 +6,6 @@
6 * 6 *
7 */ 7 */
8 8
9 -  
10 -  
11 -#define RMLatLong CLLocationCoordinate2D  
12 -  
13 typedef struct { 9 typedef struct {
14 double x, y; 10 double x, y;
15 } RMXYPoint; 11 } RMXYPoint;
@@ -23,9 +19,6 @@ typedef struct { @@ -23,9 +19,6 @@ typedef struct {
23 RMXYSize size; 19 RMXYSize size;
24 } RMXYRect; 20 } RMXYRect;
25 21
26 -  
27 -  
28 -  
29 RMXYPoint RMScaleXYPointAboutPoint(RMXYPoint point, float factor, RMXYPoint pivot); 22 RMXYPoint RMScaleXYPointAboutPoint(RMXYPoint point, float factor, RMXYPoint pivot);
30 RMXYRect RMScaleXYRectAboutPoint (RMXYRect rect, float factor, RMXYPoint pivot); 23 RMXYRect RMScaleXYRectAboutPoint (RMXYRect rect, float factor, RMXYPoint pivot);
31 RMXYPoint RMTranslateXYPointBy (RMXYPoint point, RMXYSize delta); 24 RMXYPoint RMTranslateXYPointBy (RMXYPoint point, RMXYSize delta);
@@ -49,7 +49,8 @@ typedef struct { @@ -49,7 +49,8 @@ typedef struct {
49 } CLLocationCoordinate2D; 49 } CLLocationCoordinate2D;
50 50
51 51
52 -  
53 #endif 52 #endif
54 53
  54 +typedef CLLocationCoordinate2D RMLatLong;
  55 +
55 #endif 56 #endif
@@ -11,6 +11,7 @@ @@ -11,6 +11,7 @@
11 #import "proj_api.h" 11 #import "proj_api.h"
12 12
13 #import "RMFoundation.h" 13 #import "RMFoundation.h"
  14 +#import "RMLatLong.h"
14 15
15 16
16 @interface RMProjection : NSObject { 17 @interface RMProjection : NSObject {