-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTLIGCFile.h
More file actions
47 lines (39 loc) · 1.37 KB
/
TLIGCFile.h
File metadata and controls
47 lines (39 loc) · 1.37 KB
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
//
// TLIGCFile.h
// Tagalog
//
// Created by Nathan Vander Wilt on 10/10/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class TLLineParser;
@interface TLIGCFile : NSObject {
@private
__weak TLLineParser* parser;
NSMutableDictionary* header;
NSMutableDictionary* headerSources;
NSMutableArray* fixes;
}
- (id)initWithContentsOfURL:(NSURL*)url error:(NSError**)err;
@property (nonatomic, readonly) NSDictionary* header;
@property (nonatomic, readonly) NSDictionary* headerSources;
@property (nonatomic, readonly) NSMutableArray* fixes;
@end
extern NSString* const TLIGCHeaderSourceRecorder;
extern NSString* const TLIGCHeaderSourceRecorder;
extern NSString* const TLIGCHeaderSourceObserver;
extern NSString* const TLIGCHeaderSourcePilot;
extern NSString* const TLIGCDateKey;
extern NSString* const TLIGCDatumKey;
extern NSString* const TLIGCDatumWGS84;
extern NSString* const TLIGCDatumTextKey;
extern NSString* const TLIGCFixTimeKey;
extern NSString* const TLIGCFixLatitudeKey;
extern NSString* const TLIGCFixLongitudeKey;
extern NSString* const TLIGCFixPressureAltitudeKey;
extern NSString* const TLIGCFixValidityKey;
extern NSString* const TLIGCFixValidity2D;
extern NSString* const TLIGCFixValidity3D;
extern NSString* const TLIGCFixGeoidAltitudeKey;
extern NSString* const TLIGCFixAccuracyKey;
extern NSString* const TLIGCFixEngineNoiseKey;