/* ---------------------------------------------------------------------------- * 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 RateRule : Rule { private HandleRef swigCPtr; internal RateRule(IntPtr cPtr, bool cMemoryOwn) : base(libsbmlPINVOKE.RateRuleUpcast(cPtr), cMemoryOwn) { //super(libsbmlPINVOKE.RateRuleUpcast(cPtr), cMemoryOwn); swigCPtr = new HandleRef(this, cPtr); } internal static HandleRef getCPtr(RateRule obj) { return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr; } internal static HandleRef getCPtrAndDisown (RateRule obj) { HandleRef ptr = new HandleRef(null, IntPtr.Zero); if (obj != null) { ptr = obj.swigCPtr; obj.swigCMemOwn = false; } return ptr; } ~RateRule() { Dispose(); } public override void Dispose() { lock(this) { if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) { swigCMemOwn = false; libsbmlPINVOKE.delete_RateRule(swigCPtr); } swigCPtr = new HandleRef(null, IntPtr.Zero); GC.SuppressFinalize(this); base.Dispose(); } } public RateRule(string variable, string formula) : this(libsbmlPINVOKE.new_RateRule__SWIG_0(variable, formula), true) { } public RateRule(string variable) : this(libsbmlPINVOKE.new_RateRule__SWIG_1(variable), true) { } public RateRule() : this(libsbmlPINVOKE.new_RateRule__SWIG_2(), true) { } public RateRule(string variable, ASTNode math) : this(libsbmlPINVOKE.new_RateRule__SWIG_3(variable, ASTNode.getCPtr(math)), true) { } public RateRule(long level, long version, XMLNamespaces xmlns) : this(libsbmlPINVOKE.new_RateRule__SWIG_4(level, version, XMLNamespaces.getCPtr(xmlns)), true) { } public RateRule(long level, long version) : this(libsbmlPINVOKE.new_RateRule__SWIG_5(level, version), true) { } public RateRule(SBMLNamespaces sbmlns) : this(libsbmlPINVOKE.new_RateRule__SWIG_6(SBMLNamespaces.getCPtr(sbmlns)), true) { } public new RateRule clone() { IntPtr cPtr = libsbmlPINVOKE.RateRule_clone(swigCPtr); RateRule ret = (cPtr == IntPtr.Zero) ? null : new RateRule(cPtr, true); return ret; } } }