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
# This file was automatically generated by SWIG (http://www.swig.org).
# Version 2.0.4
#
# Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead.
 
 
 
from sys import version_info
if version_info >= (2,6,0):
    def swig_import_helper():
        from os.path import dirname
        import imp
        fp = None
        try:
            fp, pathname, description = imp.find_module('_IPY_Family', [dirname(__file__)])
        except ImportError:
            import _IPY_Family
            return _IPY_Family
        if fp is not None:
            try:
                _mod = imp.load_module('_IPY_Family', fp, pathname, description)
            finally:
                fp.close()
            return _mod
    _IPY_Family = swig_import_helper()
    del swig_import_helper
else:
    import _IPY_Family
del version_info
try:
    _swig_property = property
except NameError:
    pass # Python < 2.2 doesn't have 'property'.
def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
    if (name == "thisown"): return self.this.own(value)
    if (name == "this"):
        if type(value).__name__ == 'SwigPyObject':
            self.__dict__[name] = value
            return
    method = class_type.__swig_setmethods__.get(name,None)
    if method: return method(self,value)
    if (not static):
        self.__dict__[name] = value
    else:
        raise AttributeError("You cannot add attributes to %s" % self)
 
def _swig_setattr(self,class_type,name,value):
    return _swig_setattr_nondynamic(self,class_type,name,value,0)
 
def _swig_getattr(self,class_type,name):
    if (name == "thisown"): return self.this.own()
    method = class_type.__swig_getmethods__.get(name,None)
    if method: return method(self)
    raise AttributeError(name)
 
def _swig_repr(self):
    try: strthis = "proxy of " + self.this.__repr__()
    except: strthis = ""
    return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)
 
try:
    _object = object
    _newclass = 1
except AttributeError:
    class _object : pass
    _newclass = 0
 
 
class SwigPyIterator(_object):
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, SwigPyIterator, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, SwigPyIterator, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined - class is abstract")
    __repr__ = _swig_repr
    __swig_destroy__ = _IPY_Family.delete_SwigPyIterator
    __del__ = lambda self : None;
    def value(self): return _IPY_Family.SwigPyIterator_value(self)
    def incr(self, n = 1): return _IPY_Family.SwigPyIterator_incr(self, n)
    def decr(self, n = 1): return _IPY_Family.SwigPyIterator_decr(self, n)
    def distance(self, *args): return _IPY_Family.SwigPyIterator_distance(self, *args)
    def equal(self, *args): return _IPY_Family.SwigPyIterator_equal(self, *args)
    def copy(self): return _IPY_Family.SwigPyIterator_copy(self)
    def next(self): return _IPY_Family.SwigPyIterator_next(self)
    def __next__(self): return _IPY_Family.SwigPyIterator___next__(self)
    def previous(self): return _IPY_Family.SwigPyIterator_previous(self)
    def advance(self, *args): return _IPY_Family.SwigPyIterator_advance(self, *args)
    def __eq__(self, *args): return _IPY_Family.SwigPyIterator___eq__(self, *args)
    def __ne__(self, *args): return _IPY_Family.SwigPyIterator___ne__(self, *args)
    def __iadd__(self, *args): return _IPY_Family.SwigPyIterator___iadd__(self, *args)
    def __isub__(self, *args): return _IPY_Family.SwigPyIterator___isub__(self, *args)
    def __add__(self, *args): return _IPY_Family.SwigPyIterator___add__(self, *args)
    def __sub__(self, *args): return _IPY_Family.SwigPyIterator___sub__(self, *args)
    def __iter__(self): return self
SwigPyIterator_swigregister = _IPY_Family.SwigPyIterator_swigregister
SwigPyIterator_swigregister(SwigPyIterator)
 
class IntVector(_object):
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, IntVector, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, IntVector, name)
    __repr__ = _swig_repr
    def iterator(self): return _IPY_Family.IntVector_iterator(self)
    def __iter__(self): return self.iterator()
    def __nonzero__(self): return _IPY_Family.IntVector___nonzero__(self)
    def __bool__(self): return _IPY_Family.IntVector___bool__(self)
    def __len__(self): return _IPY_Family.IntVector___len__(self)
    def pop(self): return _IPY_Family.IntVector_pop(self)
    def __getslice__(self, *args): return _IPY_Family.IntVector___getslice__(self, *args)
    def __setslice__(self, *args): return _IPY_Family.IntVector___setslice__(self, *args)
    def __delslice__(self, *args): return _IPY_Family.IntVector___delslice__(self, *args)
    def __delitem__(self, *args): return _IPY_Family.IntVector___delitem__(self, *args)
    def __getitem__(self, *args): return _IPY_Family.IntVector___getitem__(self, *args)
    def __setitem__(self, *args): return _IPY_Family.IntVector___setitem__(self, *args)
    def append(self, *args): return _IPY_Family.IntVector_append(self, *args)
    def empty(self): return _IPY_Family.IntVector_empty(self)
    def size(self): return _IPY_Family.IntVector_size(self)
    def clear(self): return _IPY_Family.IntVector_clear(self)
    def swap(self, *args): return _IPY_Family.IntVector_swap(self, *args)
    def get_allocator(self): return _IPY_Family.IntVector_get_allocator(self)
    def begin(self): return _IPY_Family.IntVector_begin(self)
    def end(self): return _IPY_Family.IntVector_end(self)
    def rbegin(self): return _IPY_Family.IntVector_rbegin(self)
    def rend(self): return _IPY_Family.IntVector_rend(self)
    def pop_back(self): return _IPY_Family.IntVector_pop_back(self)
    def erase(self, *args): return _IPY_Family.IntVector_erase(self, *args)
    def __init__(self, *args): 
        this = _IPY_Family.new_IntVector(*args)
        try: self.this.append(this)
        except: self.this = this
    def push_back(self, *args): return _IPY_Family.IntVector_push_back(self, *args)
    def front(self): return _IPY_Family.IntVector_front(self)
    def back(self): return _IPY_Family.IntVector_back(self)
    def assign(self, *args): return _IPY_Family.IntVector_assign(self, *args)
    def resize(self, *args): return _IPY_Family.IntVector_resize(self, *args)
    def insert(self, *args): return _IPY_Family.IntVector_insert(self, *args)
    def reserve(self, *args): return _IPY_Family.IntVector_reserve(self, *args)
    def capacity(self): return _IPY_Family.IntVector_capacity(self)
    __swig_destroy__ = _IPY_Family.delete_IntVector
    __del__ = lambda self : None;
IntVector_swigregister = _IPY_Family.IntVector_swigregister
IntVector_swigregister(IntVector)
 
class DoubleVector(_object):
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, DoubleVector, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, DoubleVector, name)
    __repr__ = _swig_repr
    def iterator(self): return _IPY_Family.DoubleVector_iterator(self)
    def __iter__(self): return self.iterator()
    def __nonzero__(self): return _IPY_Family.DoubleVector___nonzero__(self)
    def __bool__(self): return _IPY_Family.DoubleVector___bool__(self)
    def __len__(self): return _IPY_Family.DoubleVector___len__(self)
    def pop(self): return _IPY_Family.DoubleVector_pop(self)
    def __getslice__(self, *args): return _IPY_Family.DoubleVector___getslice__(self, *args)
    def __setslice__(self, *args): return _IPY_Family.DoubleVector___setslice__(self, *args)
    def __delslice__(self, *args): return _IPY_Family.DoubleVector___delslice__(self, *args)
    def __delitem__(self, *args): return _IPY_Family.DoubleVector___delitem__(self, *args)
    def __getitem__(self, *args): return _IPY_Family.DoubleVector___getitem__(self, *args)
    def __setitem__(self, *args): return _IPY_Family.DoubleVector___setitem__(self, *args)
    def append(self, *args): return _IPY_Family.DoubleVector_append(self, *args)
    def empty(self): return _IPY_Family.DoubleVector_empty(self)
    def size(self): return _IPY_Family.DoubleVector_size(self)
    def clear(self): return _IPY_Family.DoubleVector_clear(self)
    def swap(self, *args): return _IPY_Family.DoubleVector_swap(self, *args)
    def get_allocator(self): return _IPY_Family.DoubleVector_get_allocator(self)
    def begin(self): return _IPY_Family.DoubleVector_begin(self)
    def end(self): return _IPY_Family.DoubleVector_end(self)
    def rbegin(self): return _IPY_Family.DoubleVector_rbegin(self)
    def rend(self): return _IPY_Family.DoubleVector_rend(self)
    def pop_back(self): return _IPY_Family.DoubleVector_pop_back(self)
    def erase(self, *args): return _IPY_Family.DoubleVector_erase(self, *args)
    def __init__(self, *args): 
        this = _IPY_Family.new_DoubleVector(*args)
        try: self.this.append(this)
        except: self.this = this
    def push_back(self, *args): return _IPY_Family.DoubleVector_push_back(self, *args)
    def front(self): return _IPY_Family.DoubleVector_front(self)
    def back(self): return _IPY_Family.DoubleVector_back(self)
    def assign(self, *args): return _IPY_Family.DoubleVector_assign(self, *args)
    def resize(self, *args): return _IPY_Family.DoubleVector_resize(self, *args)
    def insert(self, *args): return _IPY_Family.DoubleVector_insert(self, *args)
    def reserve(self, *args): return _IPY_Family.DoubleVector_reserve(self, *args)
    def capacity(self): return _IPY_Family.DoubleVector_capacity(self)
    __swig_destroy__ = _IPY_Family.delete_DoubleVector
    __del__ = lambda self : None;
DoubleVector_swigregister = _IPY_Family.DoubleVector_swigregister
DoubleVector_swigregister(DoubleVector)
 
class PairInt(_object):
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, PairInt, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, PairInt, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        this = _IPY_Family.new_PairInt(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_setmethods__["first"] = _IPY_Family.PairInt_first_set
    __swig_getmethods__["first"] = _IPY_Family.PairInt_first_get
    if _newclass:first = _swig_property(_IPY_Family.PairInt_first_get, _IPY_Family.PairInt_first_set)
    __swig_setmethods__["second"] = _IPY_Family.PairInt_second_set
    __swig_getmethods__["second"] = _IPY_Family.PairInt_second_get
    if _newclass:second = _swig_property(_IPY_Family.PairInt_second_get, _IPY_Family.PairInt_second_set)
    def __len__(self): return 2
    def __repr__(self): return str((self.first, self.second))
    def __getitem__(self, index): 
      if not (index % 2): 
        return self.first
      else:
        return self.second
    def __setitem__(self, index, val):
      if not (index % 2): 
        self.first = val
      else:
        self.second = val
    __swig_destroy__ = _IPY_Family.delete_PairInt
    __del__ = lambda self : None;
PairInt_swigregister = _IPY_Family.PairInt_swigregister
PairInt_swigregister(PairInt)
 
class IPY_PlayerFamily(_object):
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, IPY_PlayerFamily, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, IPY_PlayerFamily, name)
    __repr__ = _swig_repr
    def __init__(self): 
        this = _IPY_Family.new_IPY_PlayerFamily()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _IPY_Family.delete_IPY_PlayerFamily
    __del__ = lambda self : None;
    def SetInstance(self, *args): return _IPY_Family.IPY_PlayerFamily_SetInstance(self, *args)
    def GetInstance(self): return _IPY_Family.IPY_PlayerFamily_GetInstance(self)
    def GetPlayerID(self): return _IPY_Family.IPY_PlayerFamily_GetPlayerID(self)
    def GetFamilyID(self): return _IPY_Family.IPY_PlayerFamily_GetFamilyID(self)
    def GetName(self): return _IPY_Family.IPY_PlayerFamily_GetName(self)
    def GetLV(self): return _IPY_Family.IPY_PlayerFamily_GetLV(self)
    def GetReincarnationLv(self): return _IPY_Family.IPY_PlayerFamily_GetReincarnationLv(self)
    def GetJob(self): return _IPY_Family.IPY_PlayerFamily_GetJob(self)
    def GetFamilyLV(self): return _IPY_Family.IPY_PlayerFamily_GetFamilyLV(self)
    def GetFamilyName(self): return _IPY_Family.IPY_PlayerFamily_GetFamilyName(self)
    def SetPlayerID(self, *args): return _IPY_Family.IPY_PlayerFamily_SetPlayerID(self, *args)
    def SetFamilyID(self, *args): return _IPY_Family.IPY_PlayerFamily_SetFamilyID(self, *args)
    def SetName(self, *args): return _IPY_Family.IPY_PlayerFamily_SetName(self, *args)
    def SetLV(self, *args): return _IPY_Family.IPY_PlayerFamily_SetLV(self, *args)
    def SetReincarnationLv(self, *args): return _IPY_Family.IPY_PlayerFamily_SetReincarnationLv(self, *args)
    def SetJob(self, *args): return _IPY_Family.IPY_PlayerFamily_SetJob(self, *args)
    def SetFamilyLV(self, *args): return _IPY_Family.IPY_PlayerFamily_SetFamilyLV(self, *args)
    def SetFamilyName(self, *args): return _IPY_Family.IPY_PlayerFamily_SetFamilyName(self, *args)
    def SetPlayer(self, *args): return _IPY_Family.IPY_PlayerFamily_SetPlayer(self, *args)
    def GetPlayer(self): return _IPY_Family.IPY_PlayerFamily_GetPlayer(self)
    def GetFamilyActiveValue(self): return _IPY_Family.IPY_PlayerFamily_GetFamilyActiveValue(self)
    def SetFamilyActiveValue(self, *args): return _IPY_Family.IPY_PlayerFamily_SetFamilyActiveValue(self, *args)
    def GetSex(self): return _IPY_Family.IPY_PlayerFamily_GetSex(self)
    def SetSex(self, *args): return _IPY_Family.IPY_PlayerFamily_SetSex(self, *args)
    def GetExattr1(self): return _IPY_Family.IPY_PlayerFamily_GetExattr1(self)
    def SetExattr1(self, *args): return _IPY_Family.IPY_PlayerFamily_SetExattr1(self, *args)
    def GetExattr2(self): return _IPY_Family.IPY_PlayerFamily_GetExattr2(self)
    def SetExattr2(self, *args): return _IPY_Family.IPY_PlayerFamily_SetExattr2(self, *args)
    def GetExattr3(self): return _IPY_Family.IPY_PlayerFamily_GetExattr3(self)
    def SetExattr3(self, *args): return _IPY_Family.IPY_PlayerFamily_SetExattr3(self, *args)
    def GetExattr4(self): return _IPY_Family.IPY_PlayerFamily_GetExattr4(self)
    def SetExattr4(self, *args): return _IPY_Family.IPY_PlayerFamily_SetExattr4(self, *args)
    def GetExattr5(self): return _IPY_Family.IPY_PlayerFamily_GetExattr5(self)
    def SetExattr5(self, *args): return _IPY_Family.IPY_PlayerFamily_SetExattr5(self, *args)
    def GetExattr6(self): return _IPY_Family.IPY_PlayerFamily_GetExattr6(self)
    def SetExattr6(self, *args): return _IPY_Family.IPY_PlayerFamily_SetExattr6(self, *args)
    def GetExattr7(self): return _IPY_Family.IPY_PlayerFamily_GetExattr7(self)
    def SetExattr7(self, *args): return _IPY_Family.IPY_PlayerFamily_SetExattr7(self, *args)
    def GetExattr8(self): return _IPY_Family.IPY_PlayerFamily_GetExattr8(self)
    def SetExattr8(self, *args): return _IPY_Family.IPY_PlayerFamily_SetExattr8(self, *args)
    def GetOfficialRank(self): return _IPY_Family.IPY_PlayerFamily_GetOfficialRank(self)
    def SetOfficialRank(self, *args): return _IPY_Family.IPY_PlayerFamily_SetOfficialRank(self, *args)
    def GetOperateInfo(self): return _IPY_Family.IPY_PlayerFamily_GetOperateInfo(self)
    def SetOperateInfo(self, *args): return _IPY_Family.IPY_PlayerFamily_SetOperateInfo(self, *args)
    def GetFace(self): return _IPY_Family.IPY_PlayerFamily_GetFace(self)
    def SetFace(self, *args): return _IPY_Family.IPY_PlayerFamily_SetFace(self, *args)
    def GetFacePic(self): return _IPY_Family.IPY_PlayerFamily_GetFacePic(self)
    def SetFacePic(self, *args): return _IPY_Family.IPY_PlayerFamily_SetFacePic(self, *args)
IPY_PlayerFamily_swigregister = _IPY_Family.IPY_PlayerFamily_swigregister
IPY_PlayerFamily_swigregister(IPY_PlayerFamily)
 
class IPY_FamilyInfo(_object):
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, IPY_FamilyInfo, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, IPY_FamilyInfo, name)
    __repr__ = _swig_repr
    def __init__(self): 
        this = _IPY_Family.new_IPY_FamilyInfo()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _IPY_Family.delete_IPY_FamilyInfo
    __del__ = lambda self : None;
    def SetInstance(self, *args): return _IPY_Family.IPY_FamilyInfo_SetInstance(self, *args)
    def GetInstance(self): return _IPY_Family.IPY_FamilyInfo_GetInstance(self)
    def GetID(self): return _IPY_Family.IPY_FamilyInfo_GetID(self)
    def GetName(self): return _IPY_Family.IPY_FamilyInfo_GetName(self)
    def GetBroadcast(self): return _IPY_Family.IPY_FamilyInfo_GetBroadcast(self)
    def GetLV(self): return _IPY_Family.IPY_FamilyInfo_GetLV(self)
    def GetMoney(self): return _IPY_Family.IPY_FamilyInfo_GetMoney(self)
    def GetHornor(self): return _IPY_Family.IPY_FamilyInfo_GetHornor(self)
    def GetBillboardPlace(self): return _IPY_Family.IPY_FamilyInfo_GetBillboardPlace(self)
    def GetCreateTime(self): return _IPY_Family.IPY_FamilyInfo_GetCreateTime(self)
    def SetName(self, *args): return _IPY_Family.IPY_FamilyInfo_SetName(self, *args)
    def SetBroadcast(self, *args): return _IPY_Family.IPY_FamilyInfo_SetBroadcast(self, *args)
    def SetLV(self, *args): return _IPY_Family.IPY_FamilyInfo_SetLV(self, *args)
    def SetMoney(self, *args): return _IPY_Family.IPY_FamilyInfo_SetMoney(self, *args)
    def SetHornor(self, *args): return _IPY_Family.IPY_FamilyInfo_SetHornor(self, *args)
    def SetBillboardPlace(self, *args): return _IPY_Family.IPY_FamilyInfo_SetBillboardPlace(self, *args)
    def SetCreateTime(self, *args): return _IPY_Family.IPY_FamilyInfo_SetCreateTime(self, *args)
    def AddMember(self, *args): return _IPY_Family.IPY_FamilyInfo_AddMember(self, *args)
    def DeleteMember(self, *args): return _IPY_Family.IPY_FamilyInfo_DeleteMember(self, *args)
    def GetCount(self): return _IPY_Family.IPY_FamilyInfo_GetCount(self)
    def GetAt(self, *args): return _IPY_Family.IPY_FamilyInfo_GetAt(self, *args)
    def FindMember(self, *args): return _IPY_Family.IPY_FamilyInfo_FindMember(self, *args)
    def SetLeaderID(self, *args): return _IPY_Family.IPY_FamilyInfo_SetLeaderID(self, *args)
    def GetLeaderID(self): return _IPY_Family.IPY_FamilyInfo_GetLeaderID(self)
    def GetLeaderName(self): return _IPY_Family.IPY_FamilyInfo_GetLeaderName(self)
    def SetLeaderName(self, *args): return _IPY_Family.IPY_FamilyInfo_SetLeaderName(self, *args)
    def SetLeaderOfficialRank(self, *args): return _IPY_Family.IPY_FamilyInfo_SetLeaderOfficialRank(self, *args)
    def GetLeaderOfficialRank(self): return _IPY_Family.IPY_FamilyInfo_GetLeaderOfficialRank(self)
    def GetAcceptJoin(self): return _IPY_Family.IPY_FamilyInfo_GetAcceptJoin(self)
    def SetAcceptJoin(self, *args): return _IPY_Family.IPY_FamilyInfo_SetAcceptJoin(self, *args)
    def GetPoint(self): return _IPY_Family.IPY_FamilyInfo_GetPoint(self)
    def SetPoint(self, *args): return _IPY_Family.IPY_FamilyInfo_SetPoint(self, *args)
    def GetFamilyActiveValue(self): return _IPY_Family.IPY_FamilyInfo_GetFamilyActiveValue(self)
    def SetFamilyActiveValue(self, *args): return _IPY_Family.IPY_FamilyInfo_SetFamilyActiveValue(self, *args)
    def GetLastWeekFamilyActiveValue(self): return _IPY_Family.IPY_FamilyInfo_GetLastWeekFamilyActiveValue(self)
    def SetLastWeekFamilyActiveValue(self, *args): return _IPY_Family.IPY_FamilyInfo_SetLastWeekFamilyActiveValue(self, *args)
    def GetBeChallengedTime(self): return _IPY_Family.IPY_FamilyInfo_GetBeChallengedTime(self)
    def SetBeChallengedTime(self, *args): return _IPY_Family.IPY_FamilyInfo_SetBeChallengedTime(self, *args)
    def GetExtra1(self): return _IPY_Family.IPY_FamilyInfo_GetExtra1(self)
    def SetExtra1(self, *args): return _IPY_Family.IPY_FamilyInfo_SetExtra1(self, *args)
    def GetExtra2(self): return _IPY_Family.IPY_FamilyInfo_GetExtra2(self)
    def SetExtra2(self, *args): return _IPY_Family.IPY_FamilyInfo_SetExtra2(self, *args)
    def GetExtra3(self): return _IPY_Family.IPY_FamilyInfo_GetExtra3(self)
    def SetExtra3(self, *args): return _IPY_Family.IPY_FamilyInfo_SetExtra3(self, *args)
    def GetExtra4(self): return _IPY_Family.IPY_FamilyInfo_GetExtra4(self)
    def SetExtra4(self, *args): return _IPY_Family.IPY_FamilyInfo_SetExtra4(self, *args)
    def GetExtra5(self): return _IPY_Family.IPY_FamilyInfo_GetExtra5(self)
    def SetExtra5(self, *args): return _IPY_Family.IPY_FamilyInfo_SetExtra5(self, *args)
    def Broadcast_FamilyChange(self): return _IPY_Family.IPY_FamilyInfo_Broadcast_FamilyChange(self)
    def Broadcast_FamilyTechChange(self, *args): return _IPY_Family.IPY_FamilyInfo_Broadcast_FamilyTechChange(self, *args)
    def Broadcast_DeleteFamilyTech(self, *args): return _IPY_Family.IPY_FamilyInfo_Broadcast_DeleteFamilyTech(self, *args)
    def GetExtra6(self): return _IPY_Family.IPY_FamilyInfo_GetExtra6(self)
    def SetExtra6(self, *args): return _IPY_Family.IPY_FamilyInfo_SetExtra6(self, *args)
    def GetExtra7(self): return _IPY_Family.IPY_FamilyInfo_GetExtra7(self)
    def SetExtra7(self, *args): return _IPY_Family.IPY_FamilyInfo_SetExtra7(self, *args)
    def GetExtra8(self): return _IPY_Family.IPY_FamilyInfo_GetExtra8(self)
    def SetExtra8(self, *args): return _IPY_Family.IPY_FamilyInfo_SetExtra8(self, *args)
    def GetExtra9(self): return _IPY_Family.IPY_FamilyInfo_GetExtra9(self)
    def SetExtra9(self, *args): return _IPY_Family.IPY_FamilyInfo_SetExtra9(self, *args)
    def GetExtra10(self): return _IPY_Family.IPY_FamilyInfo_GetExtra10(self)
    def SetExtra10(self, *args): return _IPY_Family.IPY_FamilyInfo_SetExtra10(self, *args)
    def GetServerID(self): return _IPY_Family.IPY_FamilyInfo_GetServerID(self)
    def SetServerID(self, *args): return _IPY_Family.IPY_FamilyInfo_SetServerID(self, *args)
IPY_FamilyInfo_swigregister = _IPY_Family.IPY_FamilyInfo_swigregister
IPY_FamilyInfo_swigregister(IPY_FamilyInfo)
 
class IPY_FamilyManager(_object):
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, IPY_FamilyManager, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, IPY_FamilyManager, name)
    __repr__ = _swig_repr
    def __init__(self): 
        this = _IPY_Family.new_IPY_FamilyManager()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _IPY_Family.delete_IPY_FamilyManager
    __del__ = lambda self : None;
    def SetInstance(self, *args): return _IPY_Family.IPY_FamilyManager_SetInstance(self, *args)
    def AddFamily(self, *args): return _IPY_Family.IPY_FamilyManager_AddFamily(self, *args)
    def DelFamily(self, *args): return _IPY_Family.IPY_FamilyManager_DelFamily(self, *args)
    def GetFamilyUpperLimitCount(self): return _IPY_Family.IPY_FamilyManager_GetFamilyUpperLimitCount(self)
    def SetFamilyUpperLimitCount(self, *args): return _IPY_Family.IPY_FamilyManager_SetFamilyUpperLimitCount(self, *args)
    def GetCount(self): return _IPY_Family.IPY_FamilyManager_GetCount(self)
    def GetAt(self, *args): return _IPY_Family.IPY_FamilyManager_GetAt(self, *args)
    def FindFamily(self, *args): return _IPY_Family.IPY_FamilyManager_FindFamily(self, *args)
    def FindFamilyByName(self, *args): return _IPY_Family.IPY_FamilyManager_FindFamilyByName(self, *args)
    def GetSortByLVAt(self, *args): return _IPY_Family.IPY_FamilyManager_GetSortByLVAt(self, *args)
    def SortByLV(self): return _IPY_Family.IPY_FamilyManager_SortByLV(self)
    def SortBySortRule(self, sortType = 0): return _IPY_Family.IPY_FamilyManager_SortBySortRule(self, sortType)
    def GetSortBySortRule(self, *args): return _IPY_Family.IPY_FamilyManager_GetSortBySortRule(self, *args)
    def FindPlayerFamilyIndex(self, *args): return _IPY_Family.IPY_FamilyManager_FindPlayerFamilyIndex(self, *args)
    def GetPlayerFamilyIndexCount(self): return _IPY_Family.IPY_FamilyManager_GetPlayerFamilyIndexCount(self)
    def GetPlayerFamilyIndexAt(self, *args): return _IPY_Family.IPY_FamilyManager_GetPlayerFamilyIndexAt(self, *args)
IPY_FamilyManager_swigregister = _IPY_Family.IPY_FamilyManager_swigregister
IPY_FamilyManager_swigregister(IPY_FamilyManager)
 
class IPY_FamilyVS(_object):
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, IPY_FamilyVS, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, IPY_FamilyVS, name)
    __repr__ = _swig_repr
    def __init__(self): 
        this = _IPY_Family.new_IPY_FamilyVS()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _IPY_Family.delete_IPY_FamilyVS
    __del__ = lambda self : None;
    def SetInstance(self, *args): return _IPY_Family.IPY_FamilyVS_SetInstance(self, *args)
    def GetFamilyID(self): return _IPY_Family.IPY_FamilyVS_GetFamilyID(self)
    def GetFamilyName(self): return _IPY_Family.IPY_FamilyVS_GetFamilyName(self)
    def GetVSFamilyID(self): return _IPY_Family.IPY_FamilyVS_GetVSFamilyID(self)
    def GetVSFamilyName(self): return _IPY_Family.IPY_FamilyVS_GetVSFamilyName(self)
    def GetRemainDate(self): return _IPY_Family.IPY_FamilyVS_GetRemainDate(self)
    def SetFamilyID(self, *args): return _IPY_Family.IPY_FamilyVS_SetFamilyID(self, *args)
    def SetFamilyName(self, *args): return _IPY_Family.IPY_FamilyVS_SetFamilyName(self, *args)
    def SetVSFamilyID(self, *args): return _IPY_Family.IPY_FamilyVS_SetVSFamilyID(self, *args)
    def SetVSFamilyName(self, *args): return _IPY_Family.IPY_FamilyVS_SetVSFamilyName(self, *args)
    def SetRemainDate(self, *args): return _IPY_Family.IPY_FamilyVS_SetRemainDate(self, *args)
    def Clear(self): return _IPY_Family.IPY_FamilyVS_Clear(self)
    def GetIsAccept(self): return _IPY_Family.IPY_FamilyVS_GetIsAccept(self)
    def SetIsAccept(self, *args): return _IPY_Family.IPY_FamilyVS_SetIsAccept(self, *args)
    def SetFamilyLV(self, *args): return _IPY_Family.IPY_FamilyVS_SetFamilyLV(self, *args)
    def GetFamilyLV(self): return _IPY_Family.IPY_FamilyVS_GetFamilyLV(self)
    def SetVSFamilyLV(self, *args): return _IPY_Family.IPY_FamilyVS_SetVSFamilyLV(self, *args)
    def GetVSFamilyLV(self): return _IPY_Family.IPY_FamilyVS_GetVSFamilyLV(self)
IPY_FamilyVS_swigregister = _IPY_Family.IPY_FamilyVS_swigregister
IPY_FamilyVS_swigregister(IPY_FamilyVS)
 
class IPY_FamilyVSListDay(_object):
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, IPY_FamilyVSListDay, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, IPY_FamilyVSListDay, name)
    __repr__ = _swig_repr
    def __init__(self): 
        this = _IPY_Family.new_IPY_FamilyVSListDay()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _IPY_Family.delete_IPY_FamilyVSListDay
    __del__ = lambda self : None;
    def SetInstance(self, *args): return _IPY_Family.IPY_FamilyVSListDay_SetInstance(self, *args)
    def GetCount(self): return _IPY_Family.IPY_FamilyVSListDay_GetCount(self)
    def GetAt(self, *args): return _IPY_Family.IPY_FamilyVSListDay_GetAt(self, *args)
    def FindVS(self, *args): return _IPY_Family.IPY_FamilyVSListDay_FindVS(self, *args)
IPY_FamilyVSListDay_swigregister = _IPY_Family.IPY_FamilyVSListDay_swigregister
IPY_FamilyVSListDay_swigregister(IPY_FamilyVSListDay)
 
class IPY_FamilyVSManager(_object):
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, IPY_FamilyVSManager, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, IPY_FamilyVSManager, name)
    __repr__ = _swig_repr
    def __init__(self): 
        this = _IPY_Family.new_IPY_FamilyVSManager()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _IPY_Family.delete_IPY_FamilyVSManager
    __del__ = lambda self : None;
    def SetInstance(self, *args): return _IPY_Family.IPY_FamilyVSManager_SetInstance(self, *args)
    def GetFamilyList(self, *args): return _IPY_Family.IPY_FamilyVSManager_GetFamilyList(self, *args)
    def AddFamilyVS(self, *args): return _IPY_Family.IPY_FamilyVSManager_AddFamilyVS(self, *args)
    def DeleteFamilyVS(self, *args): return _IPY_Family.IPY_FamilyVSManager_DeleteFamilyVS(self, *args)
    def GetVSFamilyCount(self): return _IPY_Family.IPY_FamilyVSManager_GetVSFamilyCount(self)
    def GetVSFamilyAt(self, *args): return _IPY_Family.IPY_FamilyVSManager_GetVSFamilyAt(self, *args)
    def FindVSFamily(self, *args): return _IPY_Family.IPY_FamilyVSManager_FindVSFamily(self, *args)
    def SendToFamilyVSMapInitFamily(self, *args): return _IPY_Family.IPY_FamilyVSManager_SendToFamilyVSMapInitFamily(self, *args)
    def DeleteTodayFamilyVS(self): return _IPY_Family.IPY_FamilyVSManager_DeleteTodayFamilyVS(self)
    def GetCanStartFamilyVS(self): return _IPY_Family.IPY_FamilyVSManager_GetCanStartFamilyVS(self)
    def SetCanStartFamilyVS(self, *args): return _IPY_Family.IPY_FamilyVSManager_SetCanStartFamilyVS(self, *args)
IPY_FamilyVSManager_swigregister = _IPY_Family.IPY_FamilyVSManager_swigregister
IPY_FamilyVSManager_swigregister(IPY_FamilyVSManager)
 
# This file is compatible with both classic and new-style classes.