FbxEmitter.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 abstract class FbxEmitter : System.IDisposable, System.IEquatable<FbxEmitter> {
  12. protected global::System.Runtime.InteropServices.HandleRef swigCPtr { get ; private set; }
  13. internal FbxEmitter(global::System.IntPtr cPtr, bool ignored) {
  14. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
  15. }
  16. internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FbxEmitter obj) {
  17. return ((object)obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
  18. }
  19. public virtual void Dispose() {
  20. Dispose(true);
  21. global::System.GC.SuppressFinalize(this);
  22. }
  23. ~FbxEmitter() {
  24. Dispose(false);
  25. }
  26. protected void Dispose(bool disposing) {
  27. if (swigCPtr.Handle != global::System.IntPtr.Zero) {
  28. if (disposing) {
  29. Destroy();
  30. }
  31. lock(this) {
  32. NativeMethods.ReleaseWeakPointerHandle(swigCPtr);
  33. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
  34. }
  35. }
  36. }
  37. public override int GetHashCode(){
  38. return swigCPtr.Handle.GetHashCode();
  39. }
  40. public bool Equals(FbxEmitter other) {
  41. if (object.ReferenceEquals(other, null)) { return false; }
  42. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  43. }
  44. public override bool Equals(object obj){
  45. if (object.ReferenceEquals(obj, null)) { return false; }
  46. /* is obj a subclass of this type; if so use our Equals */
  47. var typed = obj as FbxEmitter;
  48. if (!object.ReferenceEquals(typed, null)) {
  49. return this.Equals(typed);
  50. }
  51. /* are we a subclass of the other type; if so use their Equals */
  52. if (typeof(FbxEmitter).IsSubclassOf(obj.GetType())) {
  53. return obj.Equals(this);
  54. }
  55. /* types are unrelated; can't be a match */
  56. return false;
  57. }
  58. public static bool operator == (FbxEmitter a, FbxEmitter b) {
  59. if (object.ReferenceEquals(a, b)) { return true; }
  60. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  61. return a.Equals(b);
  62. }
  63. public static bool operator != (FbxEmitter a, FbxEmitter b) {
  64. return !(a == b);
  65. }
  66. public abstract void Destroy();
  67. public abstract void Destroy(bool recursive);
  68. }
  69. }