/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 1.3.39 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ namespace libsbml { using System; using System.Runtime.InteropServices; public class AlgebraicRule : Rule { private HandleRef swigCPtr; internal AlgebraicRule(IntPtr cPtr, bool cMemoryOwn) : base(libsbmlPINVOKE.AlgebraicRuleUpcast(cPtr), cMemoryOwn) { //super(libsbmlPINVOKE.AlgebraicRuleUpcast(cPtr), cMemoryOwn); swigCPtr = new HandleRef(this, cPtr); } internal static HandleRef getCPtr(AlgebraicRule obj) { return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr; } internal static HandleRef getCPtrAndDisown (AlgebraicRule obj) { HandleRef ptr = new HandleRef(null, IntPtr.Zero); if (obj != null) { ptr = obj.swigCPtr; obj.swigCMemOwn = false; } return ptr; } ~AlgebraicRule() { Dispose(); } public override void Dispose() { lock(this) { if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) { swigCMemOwn = false; libsbmlPINVOKE.delete_AlgebraicRule(swigCPtr); } swigCPtr = new HandleRef(null, IntPtr.Zero); GC.SuppressFinalize(this); base.Dispose(); } } public AlgebraicRule(string formula) : this(libsbmlPINVOKE.new_AlgebraicRule__SWIG_0(formula), true) { } public AlgebraicRule() : this(libsbmlPINVOKE.new_AlgebraicRule__SWIG_1(), true) { } public AlgebraicRule(ASTNode math) : this(libsbmlPINVOKE.new_AlgebraicRule__SWIG_2(ASTNode.getCPtr(math)), true) { } public AlgebraicRule(long level, long version, XMLNamespaces xmlns) : this(libsbmlPINVOKE.new_AlgebraicRule__SWIG_3(level, version, XMLNamespaces.getCPtr(xmlns)), true) { } public AlgebraicRule(long level, long version) : this(libsbmlPINVOKE.new_AlgebraicRule__SWIG_4(level, version), true) { } public AlgebraicRule(SBMLNamespaces sbmlns) : this(libsbmlPINVOKE.new_AlgebraicRule__SWIG_5(SBMLNamespaces.getCPtr(sbmlns)), true) { } public new AlgebraicRule clone() { IntPtr cPtr = libsbmlPINVOKE.AlgebraicRule_clone(swigCPtr); AlgebraicRule ret = (cPtr == IntPtr.Zero) ? null : new AlgebraicRule(cPtr, true); return ret; } public void setInternalIdOnly() { libsbmlPINVOKE.AlgebraicRule_setInternalIdOnly(swigCPtr); } public bool getInternalIdOnly() { bool ret = libsbmlPINVOKE.AlgebraicRule_getInternalIdOnly(swigCPtr); return ret; } } }