public vector_NumInt32Image(vector_NumInt32Image other) : this(VisionLabPINVOKE.new_vector_NumInt32Image__SWIG_1(vector_NumInt32Image.getCPtr(other)), true)
 {
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
 public vector_NumInt32ImageEnumerator(vector_NumInt32Image collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
 public void SetRange(int index, vector_NumInt32Image values)
 {
     VisionLabPINVOKE.vector_NumInt32Image_SetRange(swigCPtr, index, vector_NumInt32Image.getCPtr(values));
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
    public static vector_NumInt32Image Repeat(NumInt32Image value, int count)
    {
        IntPtr cPtr = VisionLabPINVOKE.vector_NumInt32Image_Repeat(NumInt32Image.getCPtr(value), count);
        vector_NumInt32Image ret = (cPtr == IntPtr.Zero) ? null : new vector_NumInt32Image(cPtr, true);

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

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