2014 snapchat source code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
626 B

  1. //
  2. // SCFeatureShazam.h
  3. // SCCamera
  4. //
  5. // Created by Xiaokang Liu on 2018/4/18.
  6. //
  7. #import "SCFeature.h"
  8. @class SCLens;
  9. @protocol SCFeatureShazam;
  10. @protocol SCFeatureShazamDelegate <NSObject>
  11. - (void)featureShazam:(id<SCFeatureShazam>)featureShazam didFinishWithResult:(NSObject *)result;
  12. - (void)featureShazamDidSubmitSearchRequest:(id<SCFeatureShazam>)featureShazam;
  13. - (SCLens *)filterLensForFeatureShazam:(id<SCFeatureShazam>)featureShazam;
  14. @end
  15. @protocol SCFeatureShazam <SCFeature>
  16. @property (nonatomic, weak) id<SCFeatureShazamDelegate> delegate;
  17. - (void)stopAudioRecordingAsynchronously;
  18. - (void)resetInfo;
  19. @end