-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRoom.h
More file actions
26 lines (21 loc) · 723 Bytes
/
Room.h
File metadata and controls
26 lines (21 loc) · 723 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
//
// Room.h
//
//
// Created by admin on 12-10-11.
// Copyright (c) 2012 Esri Canada. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <ArcGIS/ArcGIS.h>
@interface Room : NSObject
@property (strong, nonatomic) NSString *number;
@property (strong, nonatomic) NSString *building;
@property (strong, nonatomic) NSString *planId;
@property (strong, nonatomic) AGSGraphic *graphic;
@property BOOL accessible;
@property BOOL visible;
@property (strong, nonatomic) AGSSimpleMarkerSymbol* markerSymbol;
-(void) hide:(AGSGraphicsLayer *)layer;
-(void) show:(AGSGraphicsLayer *)layer;
- initWithNumber:(NSString*)n building:(NSString*)b planId:(NSString*)p graphic:(AGSGraphic*)g accessible:(BOOL)a;
@end