public vectorSmartPtrFeatureBase(vectorSmartPtrFeatureBase other) : this(libtischPINVOKE.new_vectorSmartPtrFeatureBase__SWIG_1(vectorSmartPtrFeatureBase.getCPtr(other)), true)
 {
     if (libtischPINVOKE.SWIGPendingException.Pending)
     {
         throw libtischPINVOKE.SWIGPendingException.Retrieve();
     }
 }
 public vectorSmartPtrFeatureBaseEnumerator(vectorSmartPtrFeatureBase collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
 public void SetRange(int index, vectorSmartPtrFeatureBase values)
 {
     libtischPINVOKE.vectorSmartPtrFeatureBase_SetRange(swigCPtr, index, vectorSmartPtrFeatureBase.getCPtr(values));
     if (libtischPINVOKE.SWIGPendingException.Pending)
     {
         throw libtischPINVOKE.SWIGPendingException.Retrieve();
     }
 }
    public static vectorSmartPtrFeatureBase Repeat(smartPtrFeatureBase value, int count)
    {
        IntPtr cPtr = libtischPINVOKE.vectorSmartPtrFeatureBase_Repeat(smartPtrFeatureBase.getCPtr(value), count);
        vectorSmartPtrFeatureBase ret = (cPtr == IntPtr.Zero) ? null : new vectorSmartPtrFeatureBase(cPtr, true);

        if (libtischPINVOKE.SWIGPendingException.Pending)
        {
            throw libtischPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
    public vectorSmartPtrFeatureBase GetRange(int index, int count)
    {
        IntPtr cPtr = libtischPINVOKE.vectorSmartPtrFeatureBase_GetRange(swigCPtr, index, count);
        vectorSmartPtrFeatureBase ret = (cPtr == IntPtr.Zero) ? null : new vectorSmartPtrFeatureBase(cPtr, true);

        if (libtischPINVOKE.SWIGPendingException.Pending)
        {
            throw libtischPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
 internal static HandleRef getCPtr(vectorSmartPtrFeatureBase obj)
 {
     return((obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr);
 }