FbxBindingTableBase.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 FbxBindingTableBase : FbxObject {
  12. internal FbxBindingTableBase(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public FbxBindingTableEntry AddNewEntry() {
  15. FbxBindingTableEntry ret = new FbxBindingTableEntry(NativeMethods.FbxBindingTableBase_AddNewEntry(swigCPtr), false);
  16. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  17. return ret;
  18. }
  19. public override int GetHashCode(){
  20. return swigCPtr.Handle.GetHashCode();
  21. }
  22. public bool Equals(FbxBindingTableBase other) {
  23. if (object.ReferenceEquals(other, null)) { return false; }
  24. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  25. }
  26. public override bool Equals(object obj){
  27. if (object.ReferenceEquals(obj, null)) { return false; }
  28. /* is obj a subclass of this type; if so use our Equals */
  29. var typed = obj as FbxBindingTableBase;
  30. if (!object.ReferenceEquals(typed, null)) {
  31. return this.Equals(typed);
  32. }
  33. /* are we a subclass of the other type; if so use their Equals */
  34. if (typeof(FbxBindingTableBase).IsSubclassOf(obj.GetType())) {
  35. return obj.Equals(this);
  36. }
  37. /* types are unrelated; can't be a match */
  38. return false;
  39. }
  40. public static bool operator == (FbxBindingTableBase a, FbxBindingTableBase b) {
  41. if (object.ReferenceEquals(a, b)) { return true; }
  42. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  43. return a.Equals(b);
  44. }
  45. public static bool operator != (FbxBindingTableBase a, FbxBindingTableBase b) {
  46. return !(a == b);
  47. }
  48. }
  49. }