-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuilding.h
More file actions
executable file
·30 lines (24 loc) · 852 Bytes
/
Copy pathBuilding.h
File metadata and controls
executable file
·30 lines (24 loc) · 852 Bytes
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
//
// Building.h
// MapViewDemo
//
// Created by Kevin on 2/5/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface Building : NSObject
{
int intBuildingID; //the primary Key
NSString* stringBuildingName; //the building name
NSString* stringBuildingAcronym; //building accronym
NSString* stringLongitude;
NSString* stringLatitude;
}
@property (nonatomic, assign) int intBuildingID;
@property (nonatomic, retain) NSString* stringBuildingName;
@property (nonatomic, retain) NSString* stringBuildingAcronym;
@property (nonatomic, retain) NSString* stringLongitude;
@property (nonatomic, retain) NSString* stringLatitude;
//constructor
-(id) initWithData: (int)bID : (NSString*) bName : (NSString*) bAcronym : (NSString*) longitude : (NSString*) latitude;
@end