public vector_OrdInt16Image(vector_OrdInt16Image other) : this(VisionLabPINVOKE.new_vector_OrdInt16Image__SWIG_1(vector_OrdInt16Image.getCPtr(other)), true)
 {
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
 public vector_OrdInt16ImageEnumerator(vector_OrdInt16Image collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
 public void SetRange(int index, vector_OrdInt16Image values)
 {
     VisionLabPINVOKE.vector_OrdInt16Image_SetRange(swigCPtr, index, vector_OrdInt16Image.getCPtr(values));
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
    public static vector_OrdInt16Image Repeat(OrdInt16Image value, int count)
    {
        IntPtr cPtr = VisionLabPINVOKE.vector_OrdInt16Image_Repeat(OrdInt16Image.getCPtr(value), count);
        vector_OrdInt16Image ret = (cPtr == IntPtr.Zero) ? null : new vector_OrdInt16Image(cPtr, true);

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

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