public vector_LetterMatch(vector_LetterMatch other) : this(VisionLabPINVOKE.new_vector_LetterMatch__SWIG_1(vector_LetterMatch.getCPtr(other)), true)
 {
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
 public vector_LetterMatchEnumerator(vector_LetterMatch collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
 public void SetRange(int index, vector_LetterMatch values)
 {
     VisionLabPINVOKE.vector_LetterMatch_SetRange(swigCPtr, index, vector_LetterMatch.getCPtr(values));
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
 public static vector_LetterMatch PatternMatchResultToLetterMatch(vector_PatternMatchResult vpmr)
 {
     vector_LetterMatch ret = new vector_LetterMatch();
     for (int i = 0; i < vpmr.Count; i++)
     {
         ret.Add(PatternMatchResultToLetterMatch(vpmr[i]));
     }
     return ret;
 }
        public static vector_LetterMatch PatternMatchResultToLetterMatch(vector_PatternMatchResult vpmr)
        {
            vector_LetterMatch ret = new vector_LetterMatch();

            for (int i = 0; i < vpmr.Count; i++)
            {
                ret.Add(PatternMatchResultToLetterMatch(vpmr[i]));
            }
            return(ret);
        }
    public static vector_LetterMatch Repeat(LetterMatch value, int count)
    {
        IntPtr             cPtr = VisionLabPINVOKE.vector_LetterMatch_Repeat(LetterMatch.getCPtr(value), count);
        vector_LetterMatch ret  = (cPtr == IntPtr.Zero) ? null : new vector_LetterMatch(cPtr, true);

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

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