Exemple #1
0
 public StringVector(StringVector other) : this(SolARPipelineManagerPINVOKE.new_StringVector__SWIG_1(StringVector.getCPtr(other)), true)
 {
     if (SolARPipelineManagerPINVOKE.SWIGPendingException.Pending)
     {
         throw SolARPipelineManagerPINVOKE.SWIGPendingException.Retrieve();
     }
 }
Exemple #2
0
 public StringVectorEnumerator(StringVector collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
Exemple #3
0
 public void SetRange(int index, StringVector values)
 {
     SolARPipelineManagerPINVOKE.StringVector_SetRange(swigCPtr, index, StringVector.getCPtr(values));
     if (SolARPipelineManagerPINVOKE.SWIGPendingException.Pending)
     {
         throw SolARPipelineManagerPINVOKE.SWIGPendingException.Retrieve();
     }
 }
Exemple #4
0
        public static StringVector Repeat(string value, int count)
        {
            global::System.IntPtr cPtr = SolARPipelineManagerPINVOKE.StringVector_Repeat(value, count);
            StringVector          ret  = (cPtr == global::System.IntPtr.Zero) ? null : new StringVector(cPtr, true);

            if (SolARPipelineManagerPINVOKE.SWIGPendingException.Pending)
            {
                throw SolARPipelineManagerPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Exemple #5
0
        public StringVector GetRange(int index, int count)
        {
            global::System.IntPtr cPtr = SolARPipelineManagerPINVOKE.StringVector_GetRange(swigCPtr, index, count);
            StringVector          ret  = (cPtr == global::System.IntPtr.Zero) ? null : new StringVector(cPtr, true);

            if (SolARPipelineManagerPINVOKE.SWIGPendingException.Pending)
            {
                throw SolARPipelineManagerPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Exemple #6
0
 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(StringVector obj)
 {
     return((obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr);
 }