This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/iOS/Pod/Classes/DoricContextHolder.h

20 lines
357 B
C
Raw Normal View History

2019-07-29 13:48:27 +08:00
//
// DoricComponent.h
// Doric
//
// Created by pengfei.zhou on 2019/7/29.
//
#import <Foundation/Foundation.h>
2019-07-29 14:51:35 +08:00
#import "DoricContext.h"
2019-07-29 13:48:27 +08:00
NS_ASSUME_NONNULL_BEGIN
2019-07-30 15:20:11 +08:00
@interface DoricContextHolder : NSObject
2019-07-29 14:51:35 +08:00
@property (nonatomic,strong) DoricContext *doricContext;
- (instancetype)initWithContext:(DoricContext *)doricContext;
2019-07-29 13:48:27 +08:00
@end
NS_ASSUME_NONNULL_END