FbxIOBase.cs 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 FbxIOBase : FbxObject {
  12. internal FbxIOBase(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxIOBase Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxIOBase_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxIOBase ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxIOBase(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxIOBase Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxIOBase_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxIOBase ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxIOBase(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public virtual bool Initialize(string pFileName, int pFileFormat, FbxIOSettings pIOSettings) {
  27. bool ret = NativeMethods.FbxIOBase_Initialize__SWIG_0(swigCPtr, pFileName, pFileFormat, FbxIOSettings.getCPtr(pIOSettings));
  28. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  29. return ret;
  30. }
  31. public virtual bool Initialize(string pFileName, int pFileFormat) {
  32. bool ret = NativeMethods.FbxIOBase_Initialize__SWIG_1(swigCPtr, pFileName, pFileFormat);
  33. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  34. return ret;
  35. }
  36. public virtual bool Initialize(string pFileName) {
  37. bool ret = NativeMethods.FbxIOBase_Initialize__SWIG_2(swigCPtr, pFileName);
  38. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  39. return ret;
  40. }
  41. public virtual string GetFileName() {
  42. string ret = NativeMethods.FbxIOBase_GetFileName(swigCPtr);
  43. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  44. return ret;
  45. }
  46. public FbxStatus GetStatus() {
  47. FbxStatus ret = new FbxStatus(NativeMethods.FbxIOBase_GetStatus(swigCPtr), false);
  48. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  49. return ret;
  50. }
  51. public override int GetHashCode(){
  52. return swigCPtr.Handle.GetHashCode();
  53. }
  54. public bool Equals(FbxIOBase other) {
  55. if (object.ReferenceEquals(other, null)) { return false; }
  56. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  57. }
  58. public override bool Equals(object obj){
  59. if (object.ReferenceEquals(obj, null)) { return false; }
  60. /* is obj a subclass of this type; if so use our Equals */
  61. var typed = obj as FbxIOBase;
  62. if (!object.ReferenceEquals(typed, null)) {
  63. return this.Equals(typed);
  64. }
  65. /* are we a subclass of the other type; if so use their Equals */
  66. if (typeof(FbxIOBase).IsSubclassOf(obj.GetType())) {
  67. return obj.Equals(this);
  68. }
  69. /* types are unrelated; can't be a match */
  70. return false;
  71. }
  72. public static bool operator == (FbxIOBase a, FbxIOBase b) {
  73. if (object.ReferenceEquals(a, b)) { return true; }
  74. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  75. return a.Equals(b);
  76. }
  77. public static bool operator != (FbxIOBase a, FbxIOBase b) {
  78. return !(a == b);
  79. }
  80. }
  81. }