-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGPSPoint.h
36 lines (31 loc) · 833 Bytes
/
GPSPoint.h
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
//
// Point.h
// GPSLogger
//
// Created by German Laullon on 03/10/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class TrackNode;
@interface GPSPoint : NSObject {
NSNumber *index;
NSNumber *latitud;
NSNumber *longitud;
NSDate *fecha;
NSNumber *altitud;
NSNumber *velocidad;
NSNumber *tag;
TrackNode *__weak track;
}
@property (copy) NSNumber *index;
@property (copy) NSNumber *latitud;
@property (copy) NSNumber *longitud;
@property (copy) NSDate *fecha;
@property (copy) NSNumber *altitud;
@property (copy) NSNumber *velocidad;
@property (copy) NSNumber *tag;
@property (weak) TrackNode *track;
- (NSComparisonResult)compare:(GPSPoint *)anotherGPSPoint;
-(NSString *)getAddress:(NSString *)alt;
- (NSString *)prepareURL:(NSString *)url params:(NSDictionary *)args;
@end