FbxSharpProgressCallback.cs 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. internal abstract class FbxSharpProgressCallback : global::System.IDisposable {
  12. private global::System.Runtime.InteropServices.HandleRef swigCPtr;
  13. protected bool swigCMemOwn;
  14. internal FbxSharpProgressCallback(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(FbxSharpProgressCallback obj) {
  19. return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
  20. }
  21. ~FbxSharpProgressCallback() {
  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_FbxSharpProgressCallback(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 FbxSharpProgressCallback() : this(NativeMethods.new_FbxSharpProgressCallback(), true) {
  37. SwigDirectorConnect();
  38. }
  39. public virtual bool Progress(float percentage, string status) {
  40. bool ret = NativeMethods.FbxSharpProgressCallback_Progress(swigCPtr, percentage, status);
  41. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  42. return ret;
  43. }
  44. internal class Wrapper : FbxSharpProgressCallback {
  45. Globals.FbxProgressCallback m_callback;
  46. internal Wrapper (Globals.FbxProgressCallback callback) {
  47. m_callback = callback;
  48. }
  49. public override bool Progress(float percentage, string status) {
  50. return m_callback(percentage, status);
  51. }
  52. }
  53. private void SwigDirectorConnect() {
  54. if (SwigDerivedClassHasMethod("Progress", swigMethodTypes0))
  55. swigDelegate0 = new SwigDelegateFbxSharpProgressCallback_0(SwigDirectorProgress);
  56. NativeMethods.FbxSharpProgressCallback_director_connect(swigCPtr, swigDelegate0);
  57. }
  58. private bool SwigDerivedClassHasMethod(string methodName, global::System.Type[] methodTypes) {
  59. global::System.Reflection.MethodInfo methodInfo = this.GetType().GetMethod(methodName, global::System.Reflection.BindingFlags.Public | global::System.Reflection.BindingFlags.NonPublic | global::System.Reflection.BindingFlags.Instance, null, methodTypes, null);
  60. bool hasDerivedMethod = methodInfo.DeclaringType.IsSubclassOf(typeof(FbxSharpProgressCallback));
  61. return hasDerivedMethod;
  62. }
  63. private bool SwigDirectorProgress(float percentage, string status) {
  64. return Progress(percentage, status);
  65. }
  66. public delegate bool SwigDelegateFbxSharpProgressCallback_0(float percentage, string status);
  67. private SwigDelegateFbxSharpProgressCallback_0 swigDelegate0;
  68. private static global::System.Type[] swigMethodTypes0 = new global::System.Type[] { typeof(float), typeof(string) };
  69. }
  70. }