FbxLayerElementArrayTemplateInt.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. //------------------------------------------------------------------------------
  2. // <auto-generated />
  3. //
  4. // This file was automatically generated by SWIG (http://www.swig.org).
  5. // Version 3.0.12
  6. //
  7. // Do not make changes to this file unless you know what you are doing--modify
  8. // the SWIG interface file instead.
  9. //------------------------------------------------------------------------------
  10. namespace Autodesk.Fbx {
  11. public class FbxLayerElementArrayTemplateInt : FbxLayerElementArray {
  12. private global::System.Runtime.InteropServices.HandleRef swigCPtr;
  13. internal FbxLayerElementArrayTemplateInt(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NativeMethods.FbxLayerElementArrayTemplateInt_SWIGUpcast(cPtr), cMemoryOwn) {
  14. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
  15. }
  16. internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FbxLayerElementArrayTemplateInt obj) {
  17. return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
  18. }
  19. ~FbxLayerElementArrayTemplateInt() {
  20. Dispose();
  21. }
  22. public override void Dispose() {
  23. lock(this) {
  24. if (swigCPtr.Handle != global::System.IntPtr.Zero) {
  25. if (swigCMemOwn) {
  26. swigCMemOwn = false;
  27. NativeMethods.delete_FbxLayerElementArrayTemplateInt(swigCPtr);
  28. }
  29. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
  30. }
  31. global::System.GC.SuppressFinalize(this);
  32. base.Dispose();
  33. }
  34. }
  35. private int GetAtUnchecked(int pIndex) {
  36. int ret = NativeMethods.FbxLayerElementArrayTemplateInt_GetAtUnchecked(swigCPtr, pIndex);
  37. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  38. return ret;
  39. }
  40. public int GetAt(int pIndex) {
  41. if (pIndex < 0 || pIndex >= GetCount()) {
  42. throw new System.ArgumentOutOfRangeException("pIndex");
  43. }
  44. return GetAtUnchecked(pIndex);
  45. }
  46. public FbxLayerElementArrayTemplateInt() : this(NativeMethods.new_FbxLayerElementArrayTemplateInt(), true) {
  47. }
  48. }
  49. }