WFCCMessageContent.m 603 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // WFCCMessageContent.m
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/8/15.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import "WFCCMessageContent.h"
  9. #import "Common.h"
  10. @implementation WFCCMessagePayload
  11. @end
  12. @implementation WFCCMediaMessagePayload
  13. @end
  14. @implementation WFCCMessageContent
  15. + (void)load {
  16. }
  17. - (WFCCMessagePayload *)encode {
  18. return nil;
  19. }
  20. - (void)decode:(WFCCMessagePayload *)payload {
  21. }
  22. + (int)getContentType {
  23. return 0;
  24. }
  25. + (int)getContentFlags {
  26. return 0;
  27. }
  28. - (NSString *)digest {
  29. return @"Unimplement digest function";
  30. }
  31. @end