20 lines
338 B
Objective-C
20 lines
338 B
Objective-C
//
|
|
// XPRoomPositionLayoutImpl.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/10/15.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
///P
|
|
#import "XPRoomPositionLayoutProtocol.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPRoomPositionLayoutImpl : NSObject<XPRoomPositionLayoutProtocol>
|
|
|
|
- (CGFloat)getPositionViewHeight;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|