/* ---------------------------------------------------------------------------- * 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 ListOfFunctionDefinitions : ListOf { private HandleRef swigCPtr; internal ListOfFunctionDefinitions(IntPtr cPtr, bool cMemoryOwn) : base(libsbmlPINVOKE.ListOfFunctionDefinitionsUpcast(cPtr), cMemoryOwn) { //super(libsbmlPINVOKE.ListOfFunctionDefinitionsUpcast(cPtr), cMemoryOwn); swigCPtr = new HandleRef(this, cPtr); } internal static HandleRef getCPtr(ListOfFunctionDefinitions obj) { return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr; } internal static HandleRef getCPtrAndDisown (ListOfFunctionDefinitions obj) { HandleRef ptr = new HandleRef(null, IntPtr.Zero); if (obj != null) { ptr = obj.swigCPtr; obj.swigCMemOwn = false; } return ptr; } ~ListOfFunctionDefinitions() { Dispose(); } public override void Dispose() { lock(this) { if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) { swigCMemOwn = false; libsbmlPINVOKE.delete_ListOfFunctionDefinitions(swigCPtr); } swigCPtr = new HandleRef(null, IntPtr.Zero); GC.SuppressFinalize(this); base.Dispose(); } } public new ListOfFunctionDefinitions clone() { IntPtr cPtr = libsbmlPINVOKE.ListOfFunctionDefinitions_clone(swigCPtr); ListOfFunctionDefinitions ret = (cPtr == IntPtr.Zero) ? null : new ListOfFunctionDefinitions(cPtr, true); return ret; } public override int getTypeCode() { int ret = libsbmlPINVOKE.ListOfFunctionDefinitions_getTypeCode(swigCPtr); return ret; } public override int getItemTypeCode() { int ret = libsbmlPINVOKE.ListOfFunctionDefinitions_getItemTypeCode(swigCPtr); return ret; } public override string getElementName() { string ret = libsbmlPINVOKE.ListOfFunctionDefinitions_getElementName(swigCPtr); return ret; } public new FunctionDefinition get(long n) { IntPtr cPtr = libsbmlPINVOKE.ListOfFunctionDefinitions_get__SWIG_0(swigCPtr, n); FunctionDefinition ret = (cPtr == IntPtr.Zero) ? null : new FunctionDefinition(cPtr, false); return ret; } public new FunctionDefinition get(string sid) { IntPtr cPtr = libsbmlPINVOKE.ListOfFunctionDefinitions_get__SWIG_2(swigCPtr, sid); FunctionDefinition ret = (cPtr == IntPtr.Zero) ? null : new FunctionDefinition(cPtr, false); return ret; } public new FunctionDefinition remove(long n) { IntPtr cPtr = libsbmlPINVOKE.ListOfFunctionDefinitions_remove__SWIG_0(swigCPtr, n); FunctionDefinition ret = (cPtr == IntPtr.Zero) ? null : new FunctionDefinition(cPtr, true); return ret; } public new FunctionDefinition remove(string sid) { IntPtr cPtr = libsbmlPINVOKE.ListOfFunctionDefinitions_remove__SWIG_1(swigCPtr, sid); FunctionDefinition ret = (cPtr == IntPtr.Zero) ? null : new FunctionDefinition(cPtr, true); return ret; } public ListOfFunctionDefinitions() : this(libsbmlPINVOKE.new_ListOfFunctionDefinitions(), true) { } } }