Exemplo n.º 1
0
        public void LinearConstrainerConstructor()
        {
            tlog.Debug(tag, $"LinearConstrainerConstructor START");

            var testingTarget = new LinearConstrainer();

            Assert.IsNotNull(testingTarget, "should be not null");
            Assert.IsInstanceOf <LinearConstrainer>(testingTarget, "should be an instance of testing target class!");

            tlog.Debug(tag, "getCPtr : " + LinearConstrainer.getCPtr(testingTarget));

            testingTarget.Dispose();
            tlog.Debug(tag, $"LinearConstrainerConstructor END (OK)");
        }
Exemplo n.º 2
0
        internal LinearConstrainer Assign(LinearConstrainer rhs)
        {
            LinearConstrainer ret = new LinearConstrainer(Interop.LinearConstrainer.LinearConstrainer_Assign(swigCPtr, LinearConstrainer.getCPtr(rhs)), false);

            if (NDalicPINVOKE.SWIGPendingException.Pending)
            {
                throw NDalicPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Exemplo n.º 3
0
 internal LinearConstrainer(LinearConstrainer handle) : this(Interop.LinearConstrainer.new_LinearConstrainer__SWIG_1(LinearConstrainer.getCPtr(handle)), true)
 {
     if (NDalicPINVOKE.SWIGPendingException.Pending)
     {
         throw NDalicPINVOKE.SWIGPendingException.Retrieve();
     }
 }