getCPtr() static private method

static private getCPtr ( ASTBase obj ) : HandleRef
obj ASTBase
return System.Runtime.InteropServices.HandleRef
コード例 #1
0
        int replaceChild(long n, ASTBase newChild, bool delreplaced)
        {
            int ret = libsbmlPINVOKE.ASTBasePlugin_replaceChild(swigCPtr, n, ASTBase.getCPtr(newChild), delreplaced);

            return(ret);
        }
コード例 #2
0
        int prependChild(ASTBase newChild)
        {
            int ret = libsbmlPINVOKE.ASTBasePlugin_prependChild(swigCPtr, ASTBase.getCPtr(newChild));

            return(ret);
        }
コード例 #3
0
        int addChild(ASTBase child)
        {
            int ret = libsbmlPINVOKE.ASTBasePlugin_addChild(swigCPtr, ASTBase.getCPtr(child));

            return(ret);
        }
コード例 #4
0
        int insertChild(long n, ASTBase newChild)
        {
            int ret = libsbmlPINVOKE.ASTBasePlugin_insertChild(swigCPtr, n, ASTBase.getCPtr(newChild));

            return(ret);
        }
コード例 #5
0
 void connectToParent(ASTBase astbase)
 {
     libsbmlPINVOKE.ASTBasePlugin_connectToParent(swigCPtr, ASTBase.getCPtr(astbase));
 }