FbxIOFileHeaderInfo.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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 FbxIOFileHeaderInfo : global::System.IDisposable {
  12. private global::System.Runtime.InteropServices.HandleRef swigCPtr;
  13. protected bool swigCMemOwn;
  14. internal FbxIOFileHeaderInfo(global::System.IntPtr cPtr, bool cMemoryOwn) {
  15. swigCMemOwn = cMemoryOwn;
  16. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
  17. }
  18. internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FbxIOFileHeaderInfo obj) {
  19. return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
  20. }
  21. ~FbxIOFileHeaderInfo() {
  22. Dispose();
  23. }
  24. public virtual void Dispose() {
  25. lock(this) {
  26. if (swigCPtr.Handle != global::System.IntPtr.Zero) {
  27. if (swigCMemOwn) {
  28. swigCMemOwn = false;
  29. NativeMethods.delete_FbxIOFileHeaderInfo(swigCPtr);
  30. }
  31. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
  32. }
  33. global::System.GC.SuppressFinalize(this);
  34. }
  35. }
  36. public FbxIOFileHeaderInfo() : this(NativeMethods.new_FbxIOFileHeaderInfo(), true) {
  37. }
  38. public int mFileVersion {
  39. get {
  40. int ret = NativeMethods.FbxIOFileHeaderInfo_mFileVersion_get(swigCPtr);
  41. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  42. return ret;
  43. }
  44. }
  45. public string mCreator {
  46. get {
  47. string ret = NativeMethods.FbxIOFileHeaderInfo_mCreator_get(swigCPtr);
  48. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  49. return ret;
  50. }
  51. }
  52. }
  53. }