FbxStatus.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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 FbxStatus : global::System.IDisposable {
  12. private global::System.Runtime.InteropServices.HandleRef swigCPtr;
  13. protected bool swigCMemOwn;
  14. internal FbxStatus(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(FbxStatus obj) {
  19. return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
  20. }
  21. ~FbxStatus() {
  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_FbxStatus(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 FbxStatus() : this(NativeMethods.new_FbxStatus__SWIG_0(), true) {
  37. }
  38. public FbxStatus(FbxStatus.EStatusCode pCode) : this(NativeMethods.new_FbxStatus__SWIG_1((int)pCode), true) {
  39. }
  40. public FbxStatus(FbxStatus rhs) : this(NativeMethods.new_FbxStatus__SWIG_2(FbxStatus.getCPtr(rhs)), true) {
  41. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  42. }
  43. private bool _equals(FbxStatus rhs) {
  44. bool ret = NativeMethods.FbxStatus__equals(swigCPtr, FbxStatus.getCPtr(rhs));
  45. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  46. return ret;
  47. }
  48. public bool Error() {
  49. bool ret = NativeMethods.FbxStatus_Error(swigCPtr);
  50. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  51. return ret;
  52. }
  53. public void Clear() {
  54. NativeMethods.FbxStatus_Clear(swigCPtr);
  55. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  56. }
  57. public FbxStatus.EStatusCode GetCode() {
  58. FbxStatus.EStatusCode ret = (FbxStatus.EStatusCode)NativeMethods.FbxStatus_GetCode(swigCPtr);
  59. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  60. return ret;
  61. }
  62. public void SetCode(FbxStatus.EStatusCode rhs) {
  63. NativeMethods.FbxStatus_SetCode__SWIG_0(swigCPtr, (int)rhs);
  64. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  65. }
  66. public string GetErrorString() {
  67. string ret = NativeMethods.FbxStatus_GetErrorString(swigCPtr);
  68. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  69. return ret;
  70. }
  71. public bool Equals(FbxStatus other) {
  72. if (object.ReferenceEquals(other, null)) { return false; }
  73. return _equals(other);
  74. }
  75. public override bool Equals(object obj){
  76. if (object.ReferenceEquals(obj, null)) { return false; }
  77. /* is obj a subclass of this type; if so use our Equals */
  78. var typed = obj as FbxStatus;
  79. if (!object.ReferenceEquals(typed, null)) {
  80. return this.Equals(typed);
  81. }
  82. /* are we a subclass of the other type; if so use their Equals */
  83. if (typeof(FbxStatus).IsSubclassOf(obj.GetType())) {
  84. return obj.Equals(this);
  85. }
  86. /* types are unrelated; can't be a match */
  87. return false;
  88. }
  89. public static bool operator == (FbxStatus a, FbxStatus b) {
  90. if (object.ReferenceEquals(a, b)) { return true; }
  91. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  92. return a.Equals(b);
  93. }
  94. public static bool operator != (FbxStatus a, FbxStatus b) {
  95. return !(a == b);
  96. }
  97. public override int GetHashCode() { return (int)GetCode(); }
  98. public static bool operator == (EStatusCode a, FbxStatus b) { return (b != null ? a == b.GetCode() : false); }
  99. public static bool operator != (EStatusCode a, FbxStatus b) { return (b != null ? a != b.GetCode() : false); }
  100. public static bool operator == (FbxStatus a, EStatusCode b) { return (a != null ? a.GetCode() == b : false); }
  101. public static bool operator != (FbxStatus a, EStatusCode b) { return (a != null ? a.GetCode() != b : false); }
  102. public override string ToString() {
  103. return GetCode().ToString() + ": " + GetErrorString();
  104. }
  105. public void SetCode(FbxStatus.EStatusCode rhs, string pErrorMsg) {
  106. NativeMethods.FbxStatus_SetCode__SWIG_1(swigCPtr, (int)rhs, pErrorMsg);
  107. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  108. }
  109. public enum EStatusCode {
  110. eSuccess = 0,
  111. eFailure,
  112. eInsufficientMemory,
  113. eInvalidParameter,
  114. eIndexOutOfRange,
  115. ePasswordError,
  116. eInvalidFileVersion,
  117. eInvalidFile,
  118. eSceneCheckFail
  119. }
  120. }
  121. }