FbxImplementation.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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 FbxImplementation : FbxObject {
  12. internal FbxImplementation(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxImplementation Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxImplementation_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxImplementation ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxImplementation(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxImplementation Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxImplementation_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxImplementation ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxImplementation(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public FbxPropertyString Language {
  27. get {
  28. FbxPropertyString ret = new FbxPropertyString(NativeMethods.FbxImplementation_Language_get(swigCPtr), false);
  29. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  30. return ret;
  31. }
  32. }
  33. public FbxPropertyString LanguageVersion {
  34. get {
  35. FbxPropertyString ret = new FbxPropertyString(NativeMethods.FbxImplementation_LanguageVersion_get(swigCPtr), false);
  36. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  37. return ret;
  38. }
  39. }
  40. public FbxPropertyString RenderAPI {
  41. get {
  42. FbxPropertyString ret = new FbxPropertyString(NativeMethods.FbxImplementation_RenderAPI_get(swigCPtr), false);
  43. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  44. return ret;
  45. }
  46. }
  47. public FbxPropertyString RenderAPIVersion {
  48. get {
  49. FbxPropertyString ret = new FbxPropertyString(NativeMethods.FbxImplementation_RenderAPIVersion_get(swigCPtr), false);
  50. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  51. return ret;
  52. }
  53. }
  54. public FbxPropertyString RootBindingName {
  55. get {
  56. FbxPropertyString ret = new FbxPropertyString(NativeMethods.FbxImplementation_RootBindingName_get(swigCPtr), false);
  57. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  58. return ret;
  59. }
  60. }
  61. public FbxBindingTable AddNewTable(string pTargetName, string pTargetType) {
  62. global::System.IntPtr cPtr = NativeMethods.FbxImplementation_AddNewTable(swigCPtr, pTargetName, pTargetType);
  63. FbxBindingTable ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxBindingTable(cPtr, false);
  64. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  65. return ret;
  66. }
  67. public FbxBindingTable GetRootTable() {
  68. global::System.IntPtr cPtr = NativeMethods.FbxImplementation_GetRootTable(swigCPtr);
  69. FbxBindingTable ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxBindingTable(cPtr, false);
  70. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  71. return ret;
  72. }
  73. public override int GetHashCode(){
  74. return swigCPtr.Handle.GetHashCode();
  75. }
  76. public bool Equals(FbxImplementation other) {
  77. if (object.ReferenceEquals(other, null)) { return false; }
  78. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  79. }
  80. public override bool Equals(object obj){
  81. if (object.ReferenceEquals(obj, null)) { return false; }
  82. /* is obj a subclass of this type; if so use our Equals */
  83. var typed = obj as FbxImplementation;
  84. if (!object.ReferenceEquals(typed, null)) {
  85. return this.Equals(typed);
  86. }
  87. /* are we a subclass of the other type; if so use their Equals */
  88. if (typeof(FbxImplementation).IsSubclassOf(obj.GetType())) {
  89. return obj.Equals(this);
  90. }
  91. /* types are unrelated; can't be a match */
  92. return false;
  93. }
  94. public static bool operator == (FbxImplementation a, FbxImplementation b) {
  95. if (object.ReferenceEquals(a, b)) { return true; }
  96. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  97. return a.Equals(b);
  98. }
  99. public static bool operator != (FbxImplementation a, FbxImplementation b) {
  100. return !(a == b);
  101. }
  102. }
  103. }