forked from yobotech/WeChatRedEnvelop
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathWeChatRedEnvelop.h
More file actions
3705 lines (3403 loc) · 163 KB
/
WeChatRedEnvelop.h
File metadata and controls
3705 lines (3403 loc) · 163 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#pragma once
@protocol IAppMsgPathMgr;
@protocol IMsgExtendOperation;
@protocol WCDBHandleWrapProtocol;
@class WCDataBase;
@class WCDataBaseTable;
@class WCDBHandlesPool;
@class WCDBHandleWrap;
@class CContactDB;
@class CMessageWrap;
@class NewContactDB;
@class CContactMgr;
@class CMessageDB;
@class CMMDB;
@class OpLogDB;
struct basic_string_;
struct vector_;
struct map_;
struct set_;
typedef void (^CDUnknownBlockType)(void); // return type and parameters are unknown
@interface NSString (NSString_SBJSON)
- (id)JSONDictionary;
- (id)JSONArray;
- (id)JSONValue;
@end
@interface NSError (SimpleConstructor)
+ (_Bool)clearError:(id *)arg1;
+ (_Bool)fillError:(id *)arg1 withDomain:(id)arg2 code:(long long)arg3 description:(id)arg4;
+ (id)errorWithDomain:(id)arg1 code:(long long)arg2 description:(id)arg3;
@end
@interface NSMutableDictionary (KSSafeCollections)
- (void)safeSetValue:(id)arg1 forKey:(id)arg2;
- (void)setValueIfNotNil:(id)arg1 forKey:(id)arg2;
- (void)safeSetObject:(id)arg1 forKey:(id)arg2;
- (void)setObjectIfNotNil:(id)arg1 forKey:(id)arg2;
@end
@interface NSURL (EncodeUrl)
+ (id)safeUrlWithString:(id)arg1;
@end
@interface NSDate (dateFormatHelper)
+ (int)getNongliDayOfToday;
+ (void)printNongliDateOfYear:(int)arg1 andMonth:(int)arg2 andDay:(int)arg3;
+ (int)getHourOfToday;
@end
@interface NSThread (ThreadGetIndex)
- (long long)getThreadNum;
@end
@interface NSMutableArray (Number)
- (void)removeNumberIdenticalTo:(id)arg1;
- (unsigned long long)messageWrapIndexOfNumberIdenticalTo:(id)arg1;
@end
@interface NSData (WXCBase64Addtion)
+ (id)decodeWebSafeBase64ForString:(id)arg1;
+ (id)decodeBase64ForString:(id)arg1;
- (id)encodeWebSafeBase64ForData;
- (id)encodeBase64ForData;
@end
@interface UIImage (MMCellBackgroundImage)
+ (id)imageWithBackgroundImage:(id)arg1 andPosition:(int)arg2;
+ (id)getImageWithBackgroundImage:(id)arg1 WithRect:(struct CGRect)arg2;
+ (int)getScreenScale;
@end
@interface NSArray (Swizzle)
+ (void)swizzleReplaceObjectAtIndexWithObject:(Class)arg1;
+ (void)swizzleRemoveObjectAtIndex:(Class)arg1;
+ (void)swizzleInsertObjectAtIndex:(Class)arg1;
+ (void)swizzleAddObject:(Class)arg1;
+ (void)swizzleObjectAtIndex:(Class)arg1;
+ (void)swizzleInitWithObjectsCount:(Class)arg1;
+ (void)load;
@end
@interface NSDictionary (Swizzle)
+ (void)swizzleRemoveObjectForKey:(Class)arg1;
+ (void)swizzleSetObjectForKeyedSubscript:(Class)arg1;
+ (void)swizzleSetObjectForKey:(Class)arg1;
+ (void)swizzleInitWithObjectsForKeysCount:(Class)arg1;
+ (void)swizzleObjectForKeyedSubscript:(Class)arg1;
+ (void)swizzleInitWithObjectsForKeys:(Class)arg1;
+ (void)load;
@end
@interface NSString (Emoji)
+ (id)changeEmoji2Text:(id)arg1;
+ (_Bool)isContainEmoji:(id)arg1;
+ (_Bool)isEmoji:(id)arg1;
- (id)emojiUnifiedString;
@end
@interface NSObject (JPFix)
+ (void)jp_fixMethodSignature;
- (id)jp_methodSignatureForSelector:(SEL)arg1;
@end
@protocol IAcctStorageMgrExt <NSObject>
@optional
- (void)onSyncBufferChanged:(NSData *)arg1 isMerged:(_Bool)arg2;
- (void)onSettingChange;
@end
@protocol IBrandAttrMgrExt
@optional
- (void)onBrandContactModified:(NSString *)arg1 withAttrChanged:(NSDictionary *)arg2;
@end
@protocol IMMLanguageMgrExt <NSObject>
@optional
- (void)onLanguageChange;
@end
@protocol ISysNewXmlMsgExtendOperation <NSObject>
@optional
- (_Bool)isApproveToInviterScene;
- (_Bool)isApproveScene;
- (_Bool)isInviterScene;
- (_Bool)isWebviewScene;
- (_Bool)isInvitationScene;
- (_Bool)isQRCodeScene;
@end
@protocol MMDBRRepairerExt <NSObject>
@optional
- (void)willRepairDB:(unsigned int)arg1 needCatch:(_Bool *)arg2;
@end
@protocol MessageObserverDelegate
- (void)MessageReturn:(unsigned int)arg1 MessageInfo:(NSDictionary *)arg2 Event:(unsigned int)arg3;
@end
@protocol PBCoding <NSObject>
- (const map_ *)getValueTagIndexMap;
- (NSArray *)getValueTypeTable;
@end
@protocol WCDBCorruptReportInterface <NSObject>
- (void)ClearCorruptNum;
- (void)recordCorrupt:(int)arg1 tableName:(NSString *)arg2 opType:(unsigned int)arg3;
@optional
- (void)directReportCorrupt:(int)arg1 tableName:(NSString *)arg2 opType:(unsigned int)arg3;
@end
@protocol WCDBHandlesPoolProtocol <NSObject>
@optional
- (void)onGenerateNewHandle:(struct sqlite3 *)arg1;
@end
@protocol WCDBRestoreProtocol
- (Class)classFromTableName:(NSString *)arg1;
@optional
- (void)onRepairProgressUpdate:(float)arg1;
@end
@protocol WCDataBaseEventDelegate <NSObject>
@optional
- (_Bool)onDatabaseCorrupt:(NSString *)arg1 errorCode:(int)arg2 opType:(unsigned int)arg3;
- (void)onGenerateNewHandle:(struct sqlite3 *)arg1;
- (void)onTransactionRollback;
@end
@interface AppTVItem : NSObject
{
NSString *tvInfo;
}
+ (void)initialize;
@property(retain, nonatomic) NSString *tvInfo; // @synthesize tvInfo;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (id)toXML;
- (void)dealloc;
- (const map_ *)getValueTagIndexMap;
- (id)getValueTypeTable;
@end
@interface EmotionDesignerSharedItem : NSObject
{
unsigned int designerUin;
NSString *oldRedirectUrl;
NSString *designerName;
}
+ (void)initialize;
@property(retain, nonatomic) NSString *designerName; // @synthesize designerName;
@property(retain, nonatomic) NSString *oldRedirectUrl; // @synthesize oldRedirectUrl;
@property(nonatomic) unsigned int designerUin; // @synthesize designerUin;
- (id)toXML;
- (_Bool)fromXML:(struct XmlReaderNode_t *)arg1;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (const map_ *)getValueTagIndexMap;
- (id)getValueTypeTable;
@end
@interface MMObject : NSObject
{
}
@end
@interface WCDBRWLock : NSObject
{
NSCondition *m_locker;
}
- (void)dealloc;
- (void)unlock:(unsigned long long)arg1;
- (void)lock:(unsigned long long)arg1;
- (_Bool)tryLockRead;
- (id)init;
@end
@interface WXPBGeneratedMessage : NSObject
{
int _has_bits_[3];
int _serializedSize;
struct PBClassInfo *_classInfo;
id *_ivarValueDict;
}
+ (id)parseFromData:(id)arg1;
- (_Bool)hasProperty:(int)arg1;
- (unsigned int)continueFlag;
- (id)baseResponse;
- (void)setBaseRequest:(id)arg1;
- (void)writeValueToCodedOutputDataNoTag:(struct CodedOutputData *)arg1 value:(id)arg2 fieldType:(unsigned char)arg3;
- (void)writeValueToCodedOutputData:(struct CodedOutputData *)arg1 value:(id)arg2 fieldNumber:(int)arg3 fieldType:(unsigned char)arg4;
- (void)writeToCodedOutputData:(struct CodedOutputData *)arg1;
- (int)computeValueSizeNoTag:(id)arg1 fieldType:(unsigned char)arg2;
- (int)computeValueSize:(id)arg1 fieldNumber:(int)arg2 fieldType:(unsigned char)arg3;
- (int)serializedSize;
- (id)serializedData;
- (_Bool)isInitialized;
- (_Bool)isMessageInitialized:(id)arg1;
- (id)readValueFromCodedInputData:(struct CodedInputData *)arg1 fieldType:(unsigned char)arg2;
- (id)mergeFromCodedInputData:(struct CodedInputData *)arg1;
- (id)mergeFromData:(id)arg1;
- (id)valueAtIndex:(int)arg1;
- (void)setValue:(id)arg1 atIndex:(int)arg2;
- (int)indexOfPropertyWithSetter:(const char *)arg1;
- (int)indexOfPropertyWithGetter:(const char *)arg1;
- (void)dealloc;
- (id)init;
@end
@interface MMService : NSObject
{
_Bool m_isServiceRemoved;
_Bool m_isServicePersistent;
}
@property _Bool m_isServicePersistent; // @synthesize m_isServicePersistent;
@property _Bool m_isServiceRemoved; // @synthesize m_isServiceRemoved;
@end
@interface MMServiceCenter : NSObject
{
NSMutableDictionary *m_dicService;
NSRecursiveLock *m_lock;
}
+ (id)defaultCenter;
- (void)callClearData;
- (void)callReloadData;
- (void)callServiceMemoryWarning;
- (void)callTerminate;
- (void)callEnterBackground;
- (void)callEnterForeground;
- (void)removeService:(Class)arg1;
- (id)getService:(Class)arg1;
- (void)dealloc;
- (id)init;
@end
@interface WCDBCorruptReport : NSObject
{
_Bool m_hasDirectReport;
unsigned int m_corruptNum;
}
@property _Bool m_hasDirectReport; // @synthesize m_hasDirectReport;
@property unsigned int m_corruptNum; // @synthesize m_corruptNum;
- (void)reportCorruptOnMainThread:(id)arg1;
- (void)ClearCorruptNumWithDBID:(unsigned int)arg1;
- (void)DirectReportCorruptWithDBID:(unsigned int)arg1 dbObject:(id)arg2 dbPath:(id)arg3 errorCode:(unsigned int)arg4 important:(_Bool)arg5;
- (void)RecordCorruptWithDBID:(unsigned int)arg1 dbObject:(id)arg2 dbPath:(id)arg3 errorCode:(unsigned int)arg4 important:(_Bool)arg5;
@end
@interface WCBizUtil : NSObject
{
}
+ (id)getActionLocation;
+ (void)reportLocationAlert:(int)arg1 type:(int)arg2;
+ (id)parseRealnameGuideInfo:(id)arg1 alertViewScene:(int)arg2;
+ (void)logRealnameAction:(int)arg1;
+ (id)getBankResource:(id)arg1;
+ (void)logBannerUserAction:(int)arg1 bannerType:(int)arg2;
+ (void)playCoinSound;
+ (void)bizReportBannerUserAction:(int)arg1 bannType:(int)arg2;
+ (id)GetWCBizMainWindow;
+ (void)SetWCBizMainWindow:(id)arg1;
+ (void)ClearWCBizMainWindow;
+ (id)getTempFullPathOfYearHBImageForSender:(id)arg1;
+ (id)getFullPathOfYearHBImageWithFileId:(id)arg1 userName:(id)arg2;
+ (id)imageWithColor:(id)arg1;
+ (unsigned int)convertTenpayCmdIdToNewCGI:(unsigned int)arg1 payScene:(unsigned int)arg2;
+ (id)convertCGIEnumToString:(unsigned int)arg1;
+ (void)logOfflinePayGetToken:(int)arg1;
+ (void)logUserAction:(int)arg1;
+ (_Bool)validateUrl:(id)arg1;
+ (void)logLoanMoneyAction:(int)arg1;
+ (void)logTransferAction:(int)arg1;
+ (id)feeSymbolFromType:(id)arg1;
+ (id)feeTextFromType:(id)arg1 fee:(long long)arg2;
+ (_Bool)isEmptyKey:(id)arg1 inDictionary:(id)arg2;
+ (_Bool)isDomesticOrderWithMulitOrderDetail:(id)arg1;
+ (_Bool)isDomesticUserWithCardUserFlag:(unsigned int)arg1;
+ (_Bool)isOverseasUserWithCardUserFlag:(unsigned int)arg1;
+ (_Bool)isDomesticCardWithCardBankTag:(unsigned int)arg1;
+ (_Bool)isOverseasCardWithCardBankTag:(unsigned int)arg1;
+ (unsigned int)differntCharactorCountCompareString:(id)arg1 WithOriginalString:(id)arg2;
+ (id)getAddressBookTelphoneNumberDictionary;
+ (id)validWCMallPhoneNumber:(id)arg1;
+ (id)dictionaryWithDecodedComponets:(id)arg1 separator:(id)arg2;
+ (id)stringWithFormEncodedComponentsAscending:(id)arg1 ascending:(_Bool)arg2 skipempty:(_Bool)arg3 separator:(id)arg4;
+ (id)getWCBizLoginTitle:(id)arg1 MaxWidth:(double)arg2;
+ (id)getWCBizAuthTitle:(id)arg1 MaxWidth:(double)arg2;
+ (id)getTitleViewWithTitle:(id)arg1 SubTitle:(id)arg2 LandscapeMode:(_Bool)arg3 MaxWidth:(double)arg4;
+ (id)getTitleViewWithTitle:(id)arg1 LandscapeMode:(_Bool)arg2 MaxWidth:(double)arg3;
+ (id)getWCBizLoginTitle:(id)arg1 LandscapeMode:(_Bool)arg2 MaxWidth:(double)arg3;
+ (id)getWCBizAuthTitle:(id)arg1 LandscapeMode:(_Bool)arg2 MaxWidth:(double)arg3;
+ (id)getSaveStyleBarItemTitle:(id)arg1 target:(id)arg2 sel:(SEL)arg3;
+ (id)getWCFacingReceiveSettingDataPath;
+ (id)getWCPayCgiResponseCachePathWith:(id)arg1;
+ (id)getWCPayDigitalCrtPath;
+ (id)getWCPayRealnameWordingPath;
+ (id)getWCPayBankResourcePath;
+ (id)getWCPayPayManagePath;
+ (id)getWCRedEnvelopesLastRadomHBSelctedCountPath;
+ (id)getWCRedEnvelopesUserInfoPath;
+ (id)getWCMallFunctionListPath;
+ (id)getWCPayServerDynamicWordingPath;
+ (id)getFiltedTruthName:(id)arg1;
+ (id)getCreditCardHadViewFilePath;
+ (id)getWCAddressStageDataFilePath;
+ (id)getWCMallShowedInActivityCellProductId;
+ (id)getWCMallShowedBannerId;
+ (id)getWCMallShowedProductId;
+ (id)getWCMallShowedRedCodePath;
+ (id)getWCMallShowedNewPath;
+ (id)getWCMallTicketsListPath;
+ (id)getWCMallLatestActivityTipsPath;
+ (id)getWCMallTelephoneDictionaryPath;
+ (id)getWCMallTelephoneListPath;
+ (id)getWCAddressYiXunFilePath;
+ (id)getWCAddressFilePath;
+ (id)getWCPayLoanEntryInfoPath;
+ (id)getWCPayTransferedUserListPath;
+ (id)getWCPayNoticeInfoPath;
+ (id)getWCPayBalancePath;
+ (id)getWCPaySwitchInfoPath;
+ (id)getWCPayUserInfoPath;
+ (id)getWCPayCreditCardShowedNewInfoPath;
+ (id)getWCPayOfflinePayShowedNewInfoPath;
+ (id)getWCPayOfflinePayQueryUsrerInfoPath;
+ (id)getWCPayOfflinePayQueryInfoPath;
+ (id)getWCPayOfflinePayUserUinPath;
+ (id)getWCPayOfflinePayFreezeInfoPath;
+ (id)getWCPayOfflinePayDeviceIDPath;
+ (id)getWCPayOfflinePayCrtPath;
+ (id)getWCPayAvalibleCardBinInfoPath;
+ (id)getWCPayAllScenePayCardListPath;
+ (id)getWCPayPayCardListPath;
+ (id)getWCPaySettingPath;
+ (id)getWCBizImgCachedPath:(id)arg1;
+ (_Bool)isBindCardInfoFull:(id)arg1;
+ (id)getHeaderTipView:(id)arg1;
+ (id)getHeaderErrorTipView:(id)arg1;
+ (double)getFooterTipViewHeight:(id)arg1;
+ (id)getFooterTipView:(id)arg1;
+ (id)getFooterErrorTipView:(id)arg1;
+ (id)getStringFromBindCardInfo:(id)arg1;
+ (id)getCardTypeName:(id)arg1;
+ (_Bool)IsWCGroupPayAppServiceInPlane:(id)arg1;
+ (_Bool)IsWCRedEnvelopesAppServiceInPlane:(id)arg1;
+ (_Bool)IsWCPayTransferAppServiceInPlane:(id)arg1;
+ (unsigned char)GetWCPayVersion;
@end
@interface RecoverDataItem : NSObject
{
unsigned int m_dataType;
unsigned int m_operationType;
NSString *m_nsDescription;
NSString *m_nsPath;
}
@property(retain, nonatomic) NSString *m_nsPath; // @synthesize m_nsPath;
@property(nonatomic) unsigned int m_operationType; // @synthesize m_operationType;
@property(nonatomic) unsigned int m_dataType; // @synthesize m_dataType;
@property(retain, nonatomic) NSString *m_nsDescription; // @synthesize m_nsDescription;
- (id)description;
- (id)init;
@end
@interface PushMailWrap : NSObject <NSCopying>
{
NSString *nsSender;
NSString *nsSenderAddress;
NSString *nsSubject;
NSString *nsDigest;
NSString *nsDate;
NSString *nsWapLink;
NSString *nsMailID;
NSString *nsAccount;
NSString *nsArgs;
unsigned long long uiUin;
_Bool bHasAttachment;
NSMutableArray *arrToList;
NSMutableArray *arrCCList;
}
@property(retain, nonatomic) NSMutableArray *arrCCList; // @synthesize arrCCList;
@property(retain, nonatomic) NSMutableArray *arrToList; // @synthesize arrToList;
@property(nonatomic) unsigned long long uiUin; // @synthesize uiUin;
@property(nonatomic) _Bool bHasAttachment; // @synthesize bHasAttachment;
@property(retain, nonatomic) NSString *nsArgs; // @synthesize nsArgs;
@property(retain, nonatomic) NSString *nsAccount; // @synthesize nsAccount;
@property(retain, nonatomic) NSString *nsMailID; // @synthesize nsMailID;
@property(retain, nonatomic) NSString *nsWapLink; // @synthesize nsWapLink;
@property(retain, nonatomic) NSString *nsDate; // @synthesize nsDate;
@property(retain, nonatomic) NSString *nsDigest; // @synthesize nsDigest;
@property(retain, nonatomic) NSString *nsSubject; // @synthesize nsSubject;
@property(retain, nonatomic) NSString *nsSenderAddress; // @synthesize nsSenderAddress;
@property(retain, nonatomic) NSString *nsSender; // @synthesize nsSender;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (void)dealloc;
- (id)init;
@end
@interface FavLocationItem : NSObject
{
double _lng;
double _lat;
double _scale;
NSString *_label;
NSString *_poiname;
}
@property(retain, nonatomic) NSString *poiname; // @synthesize poiname=_poiname;
@property(retain, nonatomic) NSString *label; // @synthesize label=_label;
@property(nonatomic) double scale; // @synthesize scale=_scale;
@property(nonatomic) double lat; // @synthesize lat=_lat;
@property(nonatomic) double lng; // @synthesize lng=_lng;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (id)initWithCoder:(id)arg1;
- (void)encodeWithCoder:(id)arg1;
- (id)init;
@end
@interface FavURLItem : NSObject
{
NSString *_title;
NSString *_description;
NSString *_cleanUrl;
NSString *_thumbUrl;
int _openCache;
unsigned int _contentAttributeBitSetFlag;
NSString *_canvasInfoXml;
}
@property(retain, nonatomic) NSString *canvasInfoXml; // @synthesize canvasInfoXml=_canvasInfoXml;
@property(nonatomic) unsigned int contentAttributeBitSetFlag; // @synthesize contentAttributeBitSetFlag=_contentAttributeBitSetFlag;
@property(nonatomic) int openCache; // @synthesize openCache=_openCache;
@property(retain, nonatomic) NSString *thumbUrl; // @synthesize thumbUrl=_thumbUrl;
@property(retain, nonatomic) NSString *cleanUrl; // @synthesize cleanUrl=_cleanUrl;
@property(retain, nonatomic) NSString *description; // @synthesize description=_description;
@property(retain, nonatomic) NSString *title; // @synthesize title=_title;
- (void)setContentOriginal:(_Bool)arg1;
- (_Bool)isContentOriginal;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (id)initWithCoder:(id)arg1;
- (void)encodeWithCoder:(id)arg1;
- (id)init;
@end
@interface FavProductItem : NSObject
{
NSString *_title;
NSString *_description;
NSString *_thumbUrl;
NSString *_info;
NSString *_sellerName;
NSString *_productUrl;
}
@property(retain, nonatomic) NSString *productUrl; // @synthesize productUrl=_productUrl;
@property(retain, nonatomic) NSString *sellerName; // @synthesize sellerName=_sellerName;
@property(retain, nonatomic) NSString *info; // @synthesize info=_info;
@property(retain, nonatomic) NSString *thumbUrl; // @synthesize thumbUrl=_thumbUrl;
@property(retain, nonatomic) NSString *description; // @synthesize description=_description;
@property(retain, nonatomic) NSString *title; // @synthesize title=_title;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (id)initWithCoder:(id)arg1;
- (void)encodeWithCoder:(id)arg1;
- (id)init;
@end
@interface FavTVItem : NSObject
{
NSString *_title;
NSString *_description;
NSString *_thumbUrl;
NSString *_info;
}
@property(retain, nonatomic) NSString *info; // @synthesize info=_info;
@property(retain, nonatomic) NSString *thumbUrl; // @synthesize thumbUrl=_thumbUrl;
@property(retain, nonatomic) NSString *description; // @synthesize description=_description;
@property(retain, nonatomic) NSString *title; // @synthesize title=_title;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (id)initWithCoder:(id)arg1;
- (void)encodeWithCoder:(id)arg1;
- (id)init;
@end
@interface FavWeAppItem : NSObject
{
NSString *_appUserName;
NSString *_title;
NSString *_desc;
NSString *_thumbUrl;
NSString *_pagePath;
unsigned int _debugMode;
}
@property(nonatomic) unsigned int debugMode; // @synthesize debugMode=_debugMode;
@property(retain, nonatomic) NSString *pagePath; // @synthesize pagePath=_pagePath;
@property(retain, nonatomic) NSString *thumbUrl; // @synthesize thumbUrl=_thumbUrl;
@property(retain, nonatomic) NSString *desc; // @synthesize desc=_desc;
@property(retain, nonatomic) NSString *title; // @synthesize title=_title;
@property(retain, nonatomic) NSString *appUserName; // @synthesize appUserName=_appUserName;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (id)initWithCoder:(id)arg1;
- (void)encodeWithCoder:(id)arg1;
@end
@interface CContactOPLog : NSObject
{
NSMutableDictionary *m_dicSkipContacts;
}
+ (unsigned int)start_ModifyContact:(id)arg1;
+ (id)getModifyContactData:(id)arg1 addScene:(unsigned int)arg2 delScene:(unsigned int)arg3;
- (_Bool)add_ModifyNotifyStatus:(id)arg1 withStatus:(unsigned int)arg2 NeedSync:(_Bool)arg3;
- (_Bool)add_DeleteChatMsg:(id)arg1 sync:(_Bool)arg2;
- (_Bool)add_DeleteChatContact:(id)arg1 sync:(_Bool)arg2;
- (_Bool)add_ModifyContact:(id)arg1 delScene:(unsigned int)arg2 sync:(_Bool)arg3;
- (_Bool)add_ModifyContact:(id)arg1 addScene:(unsigned int)arg2 sync:(_Bool)arg3;
- (_Bool)add_ModifyContact:(id)arg1 sync:(_Bool)arg2;
- (_Bool)add_ModifyContact:(id)arg1 addScene:(unsigned int)arg2 delScene:(unsigned int)arg3 sync:(_Bool)arg4;
- (_Bool)isSkipContact:(id)arg1;
- (void)add_SkipContact:(id)arg1;
- (id)init;
@end
@interface WANewYearContactInfo : NSObject
{
unsigned int _resSubType;
unsigned int _startTime;
unsigned int _endTime;
unsigned int _reportID;
NSString *_scanMatchText;
NSString *_errorURL;
}
@property(retain, nonatomic) NSString *errorURL; // @synthesize errorURL=_errorURL;
@property(nonatomic) unsigned int reportID; // @synthesize reportID=_reportID;
@property(nonatomic) unsigned int endTime; // @synthesize endTime=_endTime;
@property(nonatomic) unsigned int startTime; // @synthesize startTime=_startTime;
@property(nonatomic) unsigned int resSubType; // @synthesize resSubType=_resSubType;
@property(retain, nonatomic) NSString *scanMatchText; // @synthesize scanMatchText=_scanMatchText;
- (_Bool)isInValidTime;
@end
@interface VideoParamsInfo : NSObject
{
unsigned int _fileSize;
unsigned int _duration;
unsigned int _videoBitrate;
unsigned int _audioBitrate;
unsigned int _audioChannel;
unsigned int _fps;
unsigned int _width;
unsigned int _height;
}
@property(nonatomic) unsigned int height; // @synthesize height=_height;
@property(nonatomic) unsigned int width; // @synthesize width=_width;
@property(nonatomic) unsigned int fps; // @synthesize fps=_fps;
@property(nonatomic) unsigned int audioChannel; // @synthesize audioChannel=_audioChannel;
@property(nonatomic) unsigned int audioBitrate; // @synthesize audioBitrate=_audioBitrate;
@property(nonatomic) unsigned int videoBitrate; // @synthesize videoBitrate=_videoBitrate;
@property(nonatomic) unsigned int duration; // @synthesize duration=_duration;
@property(nonatomic) unsigned int fileSize; // @synthesize fileSize=_fileSize;
@end
@interface ChatRoomData : NSObject
{
NSMutableDictionary *m_dicData;
unsigned int m_maxMemberCount;
unsigned int m_chatRoomVersion;
unsigned int m_uiLocalMemberVersion;
_Bool isSimplify;
NSRecursiveLock *_lock;
}
@property(nonatomic) _Bool isSimplify; // @synthesize isSimplify;
@property(nonatomic) unsigned int localMemberVersion; // @synthesize localMemberVersion=m_uiLocalMemberVersion;
@property(nonatomic) unsigned int chatRoomVersion; // @synthesize chatRoomVersion=m_chatRoomVersion;
@property(nonatomic) unsigned int maxMemberCount; // @synthesize maxMemberCount=m_maxMemberCount;
- (void)updateDicData:(struct XmlReaderNode_t *)arg1;
- (unsigned int)getXmlNodeIntValue:(struct XmlReaderNode_t *)arg1 forName:(const char *)arg2;
- (_Bool)isUndeliverCountOpen;
- (void)setUndeliverCountOpen:(_Bool)arg1;
- (_Bool)isShowDislayName;
- (void)setShowDislayName:(_Bool)arg1;
- (void)setInviterNameName:(id)arg1 forUserName:(id)arg2;
- (id)getInviterNameForUsername:(id)arg1;
- (id)getDislayNameForUserName:(id)arg1;
- (void)setDislayName:(id)arg1 forUserName:(id)arg2;
- (void)updateChatRoomData:(struct XmlReaderNode_t *)arg1;
- (id)getDataDescription;
- (id)getDataXml;
- (void)parseData:(id)arg1;
- (void)setDataForUserName:(id)arg1 key:(id)arg2 value:(id)arg3;
- (id)getDataForUserName:(id)arg1 key:(id)arg2;
- (void)mergeOldDetail:(id)arg1;
- (void)merge:(id)arg1;
- (id)initWithNewChatRoomData:(id)arg1;
- (id)initWithChatRoomData:(id)arg1;
- (id)init;
@end
@interface ImageInfo : NSObject <NSCopying>
{
unsigned int m_uiImageSource;
NSURL *m_nuImageSourceURL;
}
@property(retain, nonatomic) NSURL *m_nuImageSourceURL; // @synthesize m_nuImageSourceURL;
@property(nonatomic) unsigned int m_uiImageSource; // @synthesize m_uiImageSource;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (id)init;
@end
@interface UrlInfo : NSObject <NSCopying>
{
NSString *m_nsRequestUrl;
NSData *m_dtResponseData;
NSString *m_nsRefer;
_Bool m_bGetMethod;
NSData *m_dtBodyData;
NSDictionary *m_dicReq;
NSDictionary *m_dicResp;
_Bool m_bCdn;
NSString *m_nsRequestUrlSuffix;
unsigned int m_uiRecvTime;
unsigned int m_uiRetCode;
unsigned int m_uiDataSize;
unsigned int m_uiDnsCostTime;
unsigned int m_uiConnectCostTime;
unsigned int m_uiSendCostTime;
unsigned int m_uiWaitResponseCostTime;
unsigned int m_uiReceiveCostTime;
NSString *m_nsClientIP;
NSString *m_nsServerIP;
unsigned int m_uiDnsType;
NSString *m_host;
NSString *m_nsXErrno;
NSMutableArray *m_aryReceiveData;
NSString *m_fileMd5;
_Bool m_bSupportValidateMd5;
_Bool m_bContinueReceive;
NSString *m_filePath;
_Bool m_useDCIP;
_Bool m_fromSns;
_Bool m_useXorEncrypt;
unsigned long long m_xorEncryKey;
unsigned int m_uiXEncIdx;
NSString *m_nsXEnc;
NSString *m_nsXEncToken;
}
@property(nonatomic) unsigned int m_uiXEncIdx; // @synthesize m_uiXEncIdx;
@property(retain, nonatomic) NSString *m_nsXEncToken; // @synthesize m_nsXEncToken;
@property(retain, nonatomic) NSString *m_nsXEnc; // @synthesize m_nsXEnc;
@property(nonatomic) unsigned long long m_xorEncryKey; // @synthesize m_xorEncryKey;
@property(retain, nonatomic) NSMutableArray *m_aryReceiveData; // @synthesize m_aryReceiveData;
@property(nonatomic) _Bool m_useXorEncrypt; // @synthesize m_useXorEncrypt;
@property(nonatomic) _Bool m_fromSns; // @synthesize m_fromSns;
@property(nonatomic) _Bool m_useDCIP; // @synthesize m_useDCIP;
@property(nonatomic) _Bool m_bSupportValidateMd5; // @synthesize m_bSupportValidateMd5;
@property(retain, nonatomic) NSString *m_fileMd5; // @synthesize m_fileMd5;
@property(retain, nonatomic) NSString *m_filePath; // @synthesize m_filePath;
@property(nonatomic) _Bool m_bContinueReceive; // @synthesize m_bContinueReceive;
@property(retain, nonatomic) NSString *m_nsXErrno; // @synthesize m_nsXErrno;
@property(retain, nonatomic) NSString *m_nsRequestUrlSuffix; // @synthesize m_nsRequestUrlSuffix;
@property(retain, nonatomic) NSString *m_host; // @synthesize m_host;
@property(nonatomic) unsigned int m_uiDnsType; // @synthesize m_uiDnsType;
@property(retain, nonatomic) NSString *m_nsServerIP; // @synthesize m_nsServerIP;
@property(retain, nonatomic) NSString *m_nsClientIP; // @synthesize m_nsClientIP;
@property(nonatomic) unsigned int m_uiReceiveCostTime; // @synthesize m_uiReceiveCostTime;
@property(nonatomic) unsigned int m_uiWaitResponseCostTime; // @synthesize m_uiWaitResponseCostTime;
@property(nonatomic) unsigned int m_uiSendCostTime; // @synthesize m_uiSendCostTime;
@property(nonatomic) unsigned int m_uiConnectCostTime; // @synthesize m_uiConnectCostTime;
@property(nonatomic) unsigned int m_uiDnsCostTime; // @synthesize m_uiDnsCostTime;
@property(nonatomic) unsigned int m_uiDataSize; // @synthesize m_uiDataSize;
@property(nonatomic) unsigned int m_uiRetCode; // @synthesize m_uiRetCode;
@property(nonatomic) unsigned int m_uiRecvTime; // @synthesize m_uiRecvTime;
@property(nonatomic) _Bool m_bCdn; // @synthesize m_bCdn;
@property(retain, nonatomic) NSDictionary *m_dicResp; // @synthesize m_dicResp;
@property(retain, nonatomic) NSDictionary *m_dicReq; // @synthesize m_dicReq;
@property(retain, nonatomic) NSData *m_dtBodyData; // @synthesize m_dtBodyData;
@property(nonatomic) _Bool m_bGetMethod; // @synthesize m_bGetMethod;
@property(retain, nonatomic) NSString *m_nsRefer; // @synthesize m_nsRefer;
@property(retain, nonatomic) NSData *m_dtResponseData; // @synthesize m_dtResponseData;
@property(retain, nonatomic) NSString *m_nsRequestUrl; // @synthesize m_nsRequestUrl;
- (id)GenStatStringWithDataType:(int)arg1;
- (id)GenStatString;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (id)init;
@end
@interface NSTimer (Blocks)
+ (void)jdExecuteSimpleBlock:(id)arg1;
+ (id)timerWithTimeInterval:(double)arg1 block:(CDUnknownBlockType)arg2 repeats:(_Bool)arg3;
+ (id)scheduledTimerWithTimeInterval:(double)arg1 block:(CDUnknownBlockType)arg2 repeats:(_Bool)arg3;
@end
@protocol RecoverCustomDataWorker
- (void)willCustomRecoverData:(RecoverDataItem *)arg1 path:(NSString *)arg2 needCatch:(_Bool *)arg3;
@end
@protocol WCDBCoding <PBCoding>
+ (id)dummyObject;
+ (const map_ *)getValueNameIndexMap;
+ (NSArray *)getValueTable;
@property(nonatomic) long long __rowID;
@optional
+ (NSDictionary *)getWCDBTableHelperDictionary;
+ (const map_ *)getFileValueTagIndexMap;
+ (NSArray *)getFileValueTypeTable;
+ (const map_ *)getPackedValueTagIndexMap;
+ (NSArray *)getPackedValueTypeTable;
+ (const basic_string_ *)getWCDBPrimaryColumnName;
+ (const struct WCDBIndexHelper *)getWCDBIndexArray;
+ (unsigned long long)getWCDBIndexArrayCount;
@end
@interface WCPayInfoItem : NSObject <PBCoding, NSCopying>
{
unsigned int m_uiPaySubType;
NSString *m_nsFeeDesc;
NSString *m_nsTranscationID;
unsigned int m_uiInvalidTime;
unsigned int m_uiBeginTransferTime;
NSString *m_nsTransferID;
unsigned int m_uiEffectiveDate;
unsigned int m_templateID;
NSString *m_c2cUrl;
NSString *m_c2cNativeUrl;
NSString *m_c2cIconUrl;
NSString *m_receiverTitle;
NSString *m_receiverDesc;
NSString *m_senderTitle;
NSString *m_senderDesc;
NSString *m_hintText;
NSString *m_sceneText;
NSString *m_total_fee;
NSString *m_fee_type;
unsigned int m_c2c_msg_subtype;
NSString *m_nsPayMsgID;
NSString *m_payMemo;
NSString *m_nsImageID;
NSString *m_nsImageAesKey;
unsigned int m_uiImageLength;
unsigned int m_sceneId;
NSString *m_aaOrderBillNum;
unsigned int m_aaNewAAType;
NSString *m_aaLauncherTitle;
NSString *m_aaNotinerTitle;
NSString *m_aaReceiverTitle;
NSString *m_aaReceiverList;
NSString *m_aaPayerTitle;
NSString *m_aaPayerList;
NSString *m_aaLauncherUsername;
int m_redEnvelopeType;
long long m_redEnvelopeReceiveAmount;
}
+ (void)initialize;
@property(nonatomic) long long m_redEnvelopeReceiveAmount; // @synthesize m_redEnvelopeReceiveAmount;
@property(nonatomic) int m_redEnvelopeType; // @synthesize m_redEnvelopeType;
@property(retain, nonatomic) NSString *m_aaLauncherUsername; // @synthesize m_aaLauncherUsername;
@property(retain, nonatomic) NSString *m_aaPayerList; // @synthesize m_aaPayerList;
@property(retain, nonatomic) NSString *m_aaPayerTitle; // @synthesize m_aaPayerTitle;
@property(retain, nonatomic) NSString *m_aaReceiverList; // @synthesize m_aaReceiverList;
@property(retain, nonatomic) NSString *m_aaReceiverTitle; // @synthesize m_aaReceiverTitle;
@property(retain, nonatomic) NSString *m_aaNotinerTitle; // @synthesize m_aaNotinerTitle;
@property(retain, nonatomic) NSString *m_aaLauncherTitle; // @synthesize m_aaLauncherTitle;
@property(nonatomic) unsigned int m_aaNewAAType; // @synthesize m_aaNewAAType;
@property(retain, nonatomic) NSString *m_aaOrderBillNum; // @synthesize m_aaOrderBillNum;
@property(nonatomic) unsigned int m_sceneId; // @synthesize m_sceneId;
@property(nonatomic) unsigned int m_uiImageLength; // @synthesize m_uiImageLength;
@property(retain, nonatomic) NSString *m_nsImageAesKey; // @synthesize m_nsImageAesKey;
@property(retain, nonatomic) NSString *m_nsImageID; // @synthesize m_nsImageID;
@property(retain, nonatomic) NSString *m_payMemo; // @synthesize m_payMemo;
@property(retain, nonatomic) NSString *m_nsPayMsgID; // @synthesize m_nsPayMsgID;
@property(nonatomic) unsigned int m_c2c_msg_subtype; // @synthesize m_c2c_msg_subtype;
@property(retain, nonatomic) NSString *m_c2cNativeUrl; // @synthesize m_c2cNativeUrl;
@property(retain, nonatomic) NSString *m_fee_type; // @synthesize m_fee_type;
@property(retain, nonatomic) NSString *m_total_fee; // @synthesize m_total_fee;
@property(retain, nonatomic) NSString *m_senderDesc; // @synthesize m_senderDesc;
@property(retain, nonatomic) NSString *m_receiverDesc; // @synthesize m_receiverDesc;
@property(retain, nonatomic) NSString *m_sceneText; // @synthesize m_sceneText;
@property(retain, nonatomic) NSString *m_hintText; // @synthesize m_hintText;
@property(retain, nonatomic) NSString *m_senderTitle; // @synthesize m_senderTitle;
@property(retain, nonatomic) NSString *m_receiverTitle; // @synthesize m_receiverTitle;
@property(retain, nonatomic) NSString *m_c2cIconUrl; // @synthesize m_c2cIconUrl;
@property(retain, nonatomic) NSString *m_c2cUrl; // @synthesize m_c2cUrl;
@property(nonatomic) unsigned int m_templateID; // @synthesize m_templateID;
@property(nonatomic) unsigned int m_uiEffectiveDate; // @synthesize m_uiEffectiveDate;
@property(nonatomic) unsigned int m_uiBeginTransferTime; // @synthesize m_uiBeginTransferTime;
@property(retain, nonatomic) NSString *m_nsTransferID; // @synthesize m_nsTransferID;
@property(nonatomic) unsigned int m_uiInvalidTime; // @synthesize m_uiInvalidTime;
@property(retain, nonatomic) NSString *m_nsTranscationID; // @synthesize m_nsTranscationID;
@property(retain, nonatomic) NSString *m_nsFeeDesc; // @synthesize m_nsFeeDesc;
@property(nonatomic) unsigned int m_uiPaySubType; // @synthesize m_uiPaySubType;
- (id)toXML;
- (_Bool)fromXML:(struct XmlReaderNode_t *)arg1;
- (void)dealloc;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (id)init;
- (const map_ *)getValueTagIndexMap;
- (id)getValueTypeTable;
// Remaining properties
@property(readonly, copy) NSString *debugDescription;
@property(readonly, copy) NSString *description;
@property(readonly) Class superclass;
@end
@interface EmoticonSharedItem : NSObject <PBCoding, NSCopying>
{
unsigned int m_packType;
NSString *m_productId;
}
+ (void)initialize;
@property(retain, nonatomic) NSString *m_productId; // @synthesize m_productId;
@property(nonatomic) unsigned int m_packType; // @synthesize m_packType;
- (id)toXML;
- (_Bool)fromXML:(struct XmlReaderNode_t *)arg1;
- (void)dealloc;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (const map_ *)getValueTagIndexMap;
- (id)getValueTypeTable;
// Remaining properties
@property(readonly, copy) NSString *debugDescription;
@property(readonly, copy) NSString *description;
@property(readonly) Class superclass;
@end
@interface AppProductItem : NSObject <PBCoding, NSCopying>
{
unsigned int type;
NSString *productInfo;
}
+ (void)initialize;
@property(retain, nonatomic) NSString *productInfo; // @synthesize productInfo;
@property(nonatomic) unsigned int type; // @synthesize type;
- (id)toXML;
- (_Bool)fromXML:(struct XmlReaderNode_t *)arg1;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (const map_ *)getValueTagIndexMap;
- (id)getValueTypeTable;
// Remaining properties
@property(readonly, copy) NSString *debugDescription;
@property(readonly, copy) NSString *description;
@property(readonly) Class superclass;
@end
@interface WAAppPackageInfo : MMObject
{
unsigned int _type;
NSString *_md5;
}
@property(copy, nonatomic) NSString *md5; // @synthesize md5=_md5;
@property(nonatomic) unsigned int type; // @synthesize type=_type;
- (id)toXML;
- (_Bool)fromXMLStr:(id)arg1;
- (_Bool)fromXML:(struct XmlReaderNode_t *)arg1;
- (id)copyWithZone:(struct _NSZone *)arg1;
@end
@interface EmotionPageSharedItem : MMObject
{
NSDictionary *_params;
}
@property(retain, nonatomic) NSDictionary *params; // @synthesize params=_params;
- (id)xmlToDictionary:(struct XmlReaderNode_t *)arg1;
- (id)dictionaryToXml:(id)arg1;
- (id)toXML;
- (_Bool)fromXMLStr:(id)arg1;
- (_Bool)fromXML:(struct XmlReaderNode_t *)arg1;
- (id)copyWithZone:(struct _NSZone *)arg1;
@end
@interface AppInnerJumpItem : MMObject <NSCopying, PBCoding>
{
_Bool bEnableJump;
NSString *nsJumpUrl;
NSString *nsPushContent;
}
+ (void)initialize;
@property(retain, nonatomic) NSString *nsPushContent; // @synthesize nsPushContent;
@property(retain, nonatomic) NSString *nsJumpUrl; // @synthesize nsJumpUrl;
@property(nonatomic) _Bool bEnableJump; // @synthesize bEnableJump;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (const map_ *)getValueTagIndexMap;
- (id)getValueTypeTable;
// Remaining properties
@property(readonly, copy) NSString *debugDescription;
@property(readonly, copy) NSString *description;
@property(readonly) Class superclass;
@end
@interface MallProductItem : NSObject <PBCoding, NSCopying>
{
unsigned int type;
NSString *mallProductInfo;
}
+ (void)initialize;
@property(retain, nonatomic) NSString *mallProductInfo; // @synthesize mallProductInfo;
@property(nonatomic) unsigned int type; // @synthesize type;