| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // IdentityData.m
- // CParam
- //
- // Created by breeze on 2017/6/20.
- // Copyright © 2017年 Breeze. All rights reserved.
- //
- #import "IdentityData.h"
- @implementation IdentityData
- // 初始化函数
- - (id)init
- {
- if(self = [super init])
- {
- // 初始化数组
- _appGID = nil;
- _serverID = nil;
- _deviceUID = nil;
- _appUID = nil;
-
- return self;
- }
-
- return nil;
- }
- // 销毁
- - (void)destroy
- {
- _appGID = nil;
- _serverID = nil;
- _deviceUID = nil;
- _appUID = nil;
- }
- @end
|