ISSegmentDelegate.h 393 B

123456789101112131415161718192021
  1. //
  2. // ISSegmentDelegate.h
  3. // IronSource
  4. //
  5. // Created by Gili Ariel on 06/07/2017.
  6. // Copyright © 2017 Supersonic. All rights reserved.
  7. //
  8. #ifndef ISSegmentDelegate_h
  9. #define ISSegmentDelegate_h
  10. @protocol ISSegmentDelegate <NSObject>
  11. @required
  12. /**
  13. Called after a segment recived successfully
  14. */
  15. - (void)didReceiveSegement:(NSString *)segment;
  16. @end
  17. #endif /* ISSegmentDelegate_h */