QMLineDelegate.h 588 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // QMLineDelegate.h
  3. // QMLineSDK
  4. //
  5. // Created by haochongfeng on 2018/10/26.
  6. // Copyright © 2018年 haochongfeng. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "QMLineError.h"
  10. #import "QMAgent.h"
  11. @protocol QMKRegisterDelegate <NSObject>
  12. - (void)registerSuccess;
  13. - (void)registerFailure:(QMLineError *)reason;
  14. @end
  15. @protocol QMKServiceDelegate <NSObject>
  16. - (void)currentAgentStatus:(QMKStatus)status;
  17. @optional
  18. - (void)currentAgentInfo:(QMAgent *)agent;
  19. @optional
  20. - (void)currentSessionWaitNumber:(int)number;
  21. @optional
  22. - (void)inviteEvaluate;
  23. @end