1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| //
| // PBOpenViewPointController.h
| // IphoneBIMe
| //
| // Created by zjf on 2019/1/16.
| // Copyright © 2019 ProBIM. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
| @class PBProjectModel;
| @class PBModelsModel;
| @class PBViewPointModel;
| @interface PBOpenViewPointController : UIViewController
| @property (nonatomic, strong) PBProjectModel *projectModel;
| @property (nonatomic, strong) PBModelsModel *modelsModel;
| @property (nonatomic, strong) PBViewPointModel *viewPointModel;
| @end
|
|