ObSystemFunction.m 512 B

123456789101112131415161718192021222324252627
  1. //
  2. // ObSystemFunction.m
  3. // FunSDKDemo
  4. //
  5. // Created by XM on 2018/5/11.
  6. // Copyright © 2018年 XM. All rights reserved.
  7. //
  8. #import "ObSystemFunction.h"
  9. @implementation ObSystemFunction
  10. - (instancetype)init {
  11. self = [super init];
  12. if (self) {
  13. _deviceMac = @"";
  14. _channelNumber = 0;
  15. _NewVideoAnalyze = NO;
  16. _SupportIntelligentPlayBack = NO;
  17. _SupportSetDigIP = NO;
  18. _IPConsumer433Alarm = NO;
  19. _SupportSmartH264 = NO;
  20. }
  21. return self;
  22. }
  23. @end