示例#1
0
 public vectorBlobState(vectorBlobState other) : this(libtischPINVOKE.new_vectorBlobState__SWIG_1(vectorBlobState.getCPtr(other)), true)
 {
     if (libtischPINVOKE.SWIGPendingException.Pending)
     {
         throw libtischPINVOKE.SWIGPendingException.Retrieve();
     }
 }
示例#2
0
 public vectorBlobStateEnumerator(vectorBlobState collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
示例#3
0
 public void SetRange(int index, vectorBlobState values)
 {
     libtischPINVOKE.vectorBlobState_SetRange(swigCPtr, index, vectorBlobState.getCPtr(values));
     if (libtischPINVOKE.SWIGPendingException.Pending)
     {
         throw libtischPINVOKE.SWIGPendingException.Retrieve();
     }
 }
示例#4
0
    public static vectorBlobState Repeat(BlobState value, int count)
    {
        IntPtr          cPtr = libtischPINVOKE.vectorBlobState_Repeat(BlobState.getCPtr(value), count);
        vectorBlobState ret  = (cPtr == IntPtr.Zero) ? null : new vectorBlobState(cPtr, true);

        if (libtischPINVOKE.SWIGPendingException.Pending)
        {
            throw libtischPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
示例#5
0
    public vectorBlobState GetRange(int index, int count)
    {
        IntPtr          cPtr = libtischPINVOKE.vectorBlobState_GetRange(swigCPtr, index, count);
        vectorBlobState ret  = (cPtr == IntPtr.Zero) ? null : new vectorBlobState(cPtr, true);

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