BDFaceAdjustParamsCell.h 574 B

12345678910111213141516171819202122
  1. //
  2. // BDFaceAdjustParamsCell.h
  3. // FaceSDKSample_IOS
  4. //
  5. // Created by Zhang,Jian(MBD) on 2020/12/1.
  6. // Copyright © 2020 Baidu. All rights reserved.
  7. //
  8. #import "BDFaceAdjustParamsRootCell.h"
  9. #import "BDFaceAdjustParamsItem.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. typedef void(^BDFaceAdjustParamsCellDidChangedValue)(BDFaceAdjustParamsItemType, float);
  12. @interface BDFaceAdjustParamsCell : BDFaceAdjustParamsRootCell
  13. @property(nonatomic, copy) BDFaceAdjustParamsCellDidChangedValue didFinishAdjustParams;
  14. @property(nonatomic, assign) BOOL isSameConfig;
  15. @end
  16. NS_ASSUME_NONNULL_END