/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 1.3.31 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ namespace OSGeo.OGR { using System; using System.Runtime.InteropServices; public class FeatureDefn : IDisposable { private HandleRef swigCPtr; protected object swigCMemOwner; internal FeatureDefn(IntPtr cPtr, object cMemoryOwner) { swigCMemOwner = cMemoryOwner; swigCPtr = new HandleRef(this, cPtr); } internal static HandleRef getCPtr(FeatureDefn obj) { return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr; } internal static HandleRef getCPtrAndDisown(FeatureDefn obj, object cMemoryOwner) { obj.swigCMemOwner = cMemoryOwner; return getCPtr(obj); } ~FeatureDefn() { Dispose(); } public virtual void Dispose() { lock(this) { if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwner == null) { swigCMemOwner = new object(); ogrPINVOKE.delete_FeatureDefn(swigCPtr); } swigCPtr = new HandleRef(null, IntPtr.Zero); GC.SuppressFinalize(this); } } public FeatureDefn(string name) : this(ogrPINVOKE.new_FeatureDefn(name), null) { if (ogrPINVOKE.SWIGPendingException.Pending) throw ogrPINVOKE.SWIGPendingException.Retrieve(); } public string GetName() { string ret = ogrPINVOKE.FeatureDefn_GetName(swigCPtr); if (ogrPINVOKE.SWIGPendingException.Pending) throw ogrPINVOKE.SWIGPendingException.Retrieve(); return ret; } public int GetFieldCount() { int ret = ogrPINVOKE.FeatureDefn_GetFieldCount(swigCPtr); if (ogrPINVOKE.SWIGPendingException.Pending) throw ogrPINVOKE.SWIGPendingException.Retrieve(); return ret; } public FieldDefn GetFieldDefn(int i) { IntPtr cPtr = ogrPINVOKE.FeatureDefn_GetFieldDefn(swigCPtr, i); FieldDefn ret = (cPtr == IntPtr.Zero) ? null : new FieldDefn(cPtr, false? null : this); if (ogrPINVOKE.SWIGPendingException.Pending) throw ogrPINVOKE.SWIGPendingException.Retrieve(); return ret; } public int GetFieldIndex(string name) { int ret = ogrPINVOKE.FeatureDefn_GetFieldIndex(swigCPtr, name); if (ogrPINVOKE.SWIGPendingException.Pending) throw ogrPINVOKE.SWIGPendingException.Retrieve(); return ret; } public void AddFieldDefn(FieldDefn defn) { ogrPINVOKE.FeatureDefn_AddFieldDefn(swigCPtr, FieldDefn.getCPtr(defn)); if (ogrPINVOKE.SWIGPendingException.Pending) throw ogrPINVOKE.SWIGPendingException.Retrieve(); } public int GetGeomType() { int ret = ogrPINVOKE.FeatureDefn_GetGeomType(swigCPtr); if (ogrPINVOKE.SWIGPendingException.Pending) throw ogrPINVOKE.SWIGPendingException.Retrieve(); return ret; } public void SetGeomType(int geom_type) { ogrPINVOKE.FeatureDefn_SetGeomType(swigCPtr, geom_type); if (ogrPINVOKE.SWIGPendingException.Pending) throw ogrPINVOKE.SWIGPendingException.Retrieve(); } public int GetReferenceCount() { int ret = ogrPINVOKE.FeatureDefn_GetReferenceCount(swigCPtr); if (ogrPINVOKE.SWIGPendingException.Pending) throw ogrPINVOKE.SWIGPendingException.Retrieve(); return ret; } } }