/* ---------------------------------------------------------------------------- * 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 AssignmentRule : Rule { private HandleRef swigCPtr; internal AssignmentRule(IntPtr cPtr, bool cMemoryOwn) : base(libsbmlPINVOKE.AssignmentRuleUpcast(cPtr), cMemoryOwn) { //super(libsbmlPINVOKE.AssignmentRuleUpcast(cPtr), cMemoryOwn); swigCPtr = new HandleRef(this, cPtr); } internal static HandleRef getCPtr(AssignmentRule obj) { return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr; } internal static HandleRef getCPtrAndDisown (AssignmentRule obj) { HandleRef ptr = new HandleRef(null, IntPtr.Zero); if (obj != null) { ptr = obj.swigCPtr; obj.swigCMemOwn = false; } return ptr; } ~AssignmentRule() { Dispose(); } public override void Dispose() { lock(this) { if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) { swigCMemOwn = false; libsbmlPINVOKE.delete_AssignmentRule(swigCPtr); } swigCPtr = new HandleRef(null, IntPtr.Zero); GC.SuppressFinalize(this); base.Dispose(); } } public AssignmentRule(string variable, string formula) : this(libsbmlPINVOKE.new_AssignmentRule__SWIG_0(variable, formula), true) { } public AssignmentRule(string variable) : this(libsbmlPINVOKE.new_AssignmentRule__SWIG_1(variable), true) { } public AssignmentRule() : this(libsbmlPINVOKE.new_AssignmentRule__SWIG_2(), true) { } public AssignmentRule(string variable, ASTNode math) : this(libsbmlPINVOKE.new_AssignmentRule__SWIG_3(variable, ASTNode.getCPtr(math)), true) { } public AssignmentRule(long level, long version, XMLNamespaces xmlns) : this(libsbmlPINVOKE.new_AssignmentRule__SWIG_4(level, version, XMLNamespaces.getCPtr(xmlns)), true) { } public AssignmentRule(long level, long version) : this(libsbmlPINVOKE.new_AssignmentRule__SWIG_5(level, version), true) { } public AssignmentRule(SBMLNamespaces sbmlns) : this(libsbmlPINVOKE.new_AssignmentRule__SWIG_6(SBMLNamespaces.getCPtr(sbmlns)), true) { } public new AssignmentRule clone() { IntPtr cPtr = libsbmlPINVOKE.AssignmentRule_clone(swigCPtr); AssignmentRule ret = (cPtr == IntPtr.Zero) ? null : new AssignmentRule(cPtr, true); return ret; } } }