T140Callback.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* ----------------------------------------------------------------------------
  2. * This file was automatically generated by SWIG (http://www.swig.org).
  3. * Version 2.0.9
  4. *
  5. * Do not make changes to this file unless you know what you are doing--modify
  6. * the SWIG interface file instead.
  7. * ----------------------------------------------------------------------------- */
  8. namespace org.doubango.tinyWRAP {
  9. using System;
  10. using System.Runtime.InteropServices;
  11. public class T140Callback : IDisposable {
  12. private HandleRef swigCPtr;
  13. protected bool swigCMemOwn;
  14. internal T140Callback(IntPtr cPtr, bool cMemoryOwn) {
  15. swigCMemOwn = cMemoryOwn;
  16. swigCPtr = new HandleRef(this, cPtr);
  17. }
  18. internal static HandleRef getCPtr(T140Callback obj) {
  19. return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
  20. }
  21. ~T140Callback() {
  22. Dispose();
  23. }
  24. public virtual void Dispose() {
  25. lock(this) {
  26. if (swigCPtr.Handle != IntPtr.Zero) {
  27. if (swigCMemOwn) {
  28. swigCMemOwn = false;
  29. tinyWRAPPINVOKE.delete_T140Callback(swigCPtr);
  30. }
  31. swigCPtr = new HandleRef(null, IntPtr.Zero);
  32. }
  33. GC.SuppressFinalize(this);
  34. }
  35. }
  36. public T140Callback() : this(tinyWRAPPINVOKE.new_T140Callback(), true) {
  37. SwigDirectorConnect();
  38. }
  39. public virtual int ondata(T140CallbackData pData) {
  40. int ret = (SwigDerivedClassHasMethod("ondata", swigMethodTypes0) ? tinyWRAPPINVOKE.T140Callback_ondataSwigExplicitT140Callback(swigCPtr, T140CallbackData.getCPtr(pData)) : tinyWRAPPINVOKE.T140Callback_ondata(swigCPtr, T140CallbackData.getCPtr(pData)));
  41. return ret;
  42. }
  43. private void SwigDirectorConnect() {
  44. if (SwigDerivedClassHasMethod("ondata", swigMethodTypes0))
  45. swigDelegate0 = new SwigDelegateT140Callback_0(SwigDirectorondata);
  46. tinyWRAPPINVOKE.T140Callback_director_connect(swigCPtr, swigDelegate0);
  47. }
  48. private bool SwigDerivedClassHasMethod(string methodName, Type[] methodTypes) {
  49. System.Reflection.MethodInfo methodInfo = this.GetType().GetMethod(methodName, System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance, null, methodTypes, null);
  50. bool hasDerivedMethod = methodInfo.DeclaringType.IsSubclassOf(typeof(T140Callback));
  51. return hasDerivedMethod;
  52. }
  53. private int SwigDirectorondata(IntPtr pData) {
  54. return ondata((pData == IntPtr.Zero) ? null : new T140CallbackData(pData, false));
  55. }
  56. public delegate int SwigDelegateT140Callback_0(IntPtr pData);
  57. private SwigDelegateT140Callback_0 swigDelegate0;
  58. private static Type[] swigMethodTypes0 = new Type[] { typeof(T140CallbackData) };
  59. }
  60. }