def __init__(self, ptr):
     """__init__(Feature self, feat_t * ptr) -> Feature"""
     this = _sphinxbase.new_Feature(ptr)
     try:
         self.this.append(this)
     except Exception:
         self.this = this
Example #2
0
 def __init__(self):
     """__init__(Feature self) -> Feature"""
     this = _sphinxbase.new_Feature()
     try:
         self.this.append(this)
     except __builtin__.Exception:
         self.this = this
Example #3
0
 def __init__(self, *args):
     """__init__(Feature self, feat_t * ptr) -> Feature"""
     this = _sphinxbase.new_Feature(*args)
     try:
         self.this.append(this)
     except:
         self.this = this
Example #4
0
 def __init__(self, ptr):
     """__init__(Feature self, feat_t * ptr) -> Feature"""
     this = _sphinxbase.new_Feature(ptr)
     try:
         self.this.append(this)
     except Exception:
         self.this = this
 def __init__(self, *args): 
     """__init__(Feature self, feat_t * ptr) -> Feature"""
     this = _sphinxbase.new_Feature(*args)
     try: self.this.append(this)
     except: self.this = this
Example #6
0
 def __init__(self):
     r"""__init__(Feature self) -> Feature"""
     _sphinxbase.Feature_swiginit(self, _sphinxbase.new_Feature())
Example #7
0
 def __init__(self, ptr):
     r"""__init__(Feature self, feat_t * ptr) -> Feature"""
     _sphinxbase.Feature_swiginit(self, _sphinxbase.new_Feature(ptr))