/headers/GMM/GMMRoute.h

gehe zur Dokumentation dieser Datei
00001 /*
00002  *     Generated by class-dump 3.1.1.
00003  *
00004  *     class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2006 by Steve Nygard.
00005  */
00006 
00007 #import "NSObject.h"
00008 
00009 @class NSString;
00010 
00011 @interface GMMRoute : NSObject
00012 {
00013     NSString *sourceAddress;
00014     NSString *destinationAddress;
00015     NSString *distanceString;
00016     NSString *travelTime;
00017     NSString *trafficDelay;
00018     unsigned int numSegments;
00019     struct GMMSegment *segments;
00020     unsigned int numMapPoints;
00021     struct MapPoint *mapPoints;
00022     int status;
00023 }
00024 
00025 - (id)initWithDictionaryRepresentation:(id)fp8;
00026 - (id)dictionaryRepresentation;
00027 - (void)dealloc;
00028 - (id)sourceAddress;
00029 - (id)destinationAddress;
00030 - (id)distanceString;
00031 - (id)travelTime;
00032 - (id)trafficDelay;
00033 - (struct MapPoint *)destinationMapPoint;
00034 - (int)status;
00035 - (void)getMapPoints:(struct MapPoint **)fp8 count:(unsigned int *)fp12;
00036 - (void)getSegments:(struct GMMSegment **)fp8 count:(unsigned int *)fp12;
00037 
00038 @end
00039