| 1234567891011121314151617 |
- //
- // EnumSelectDelegate.h
- // RA TradeFiling
- //
- // Created by Rui Zhang on 5/14/21.
- //
- #ifndef EnumSelectDelegate_h
- #define EnumSelectDelegate_h
- @class EnumSelectViewController;
- @protocol EnumSelectViewControllerDelegate <NSObject>
- -(void) EnumValueChanged:(NSMutableDictionary *)value indexPath :(NSIndexPath*) indexPath;
- @end
- #endif /* EnumSelectDelegate_h */
|