summaryrefslogtreecommitdiffstats
path: root/bindings/csharp/XcapCallback.cs
diff options
context:
space:
mode:
authorbossiel <bossiel@yahoo.fr>2011-08-10 22:59:15 +0000
committerbossiel <bossiel@yahoo.fr>2011-08-10 22:59:15 +0000
commit1ebf5a5fcda0c9154e22ed02404fd46525a7fd9f (patch)
tree4b6214a7142ab1035cb0e47444e88af38e712421 /bindings/csharp/XcapCallback.cs
downloaddoubango-1.0.zip
doubango-1.0.tar.gz
Move deprecated v1.0 from trunk to branches1.0
Diffstat (limited to 'bindings/csharp/XcapCallback.cs')
-rw-r--r--bindings/csharp/XcapCallback.cs74
1 files changed, 74 insertions, 0 deletions
diff --git a/bindings/csharp/XcapCallback.cs b/bindings/csharp/XcapCallback.cs
new file mode 100644
index 0000000..29af421
--- /dev/null
+++ b/bindings/csharp/XcapCallback.cs
@@ -0,0 +1,74 @@
+/* ----------------------------------------------------------------------------
+ * This file was automatically generated by SWIG (http://www.swig.org).
+ * Version 1.3.39
+ *
+ * Do not make changes to this file unless you know what you are doing--modify
+ * the SWIG interface file instead.
+ * ----------------------------------------------------------------------------- */
+
+namespace org.doubango.tinyWRAP {
+
+using System;
+using System.Runtime.InteropServices;
+
+public class XcapCallback : IDisposable {
+ private HandleRef swigCPtr;
+ protected bool swigCMemOwn;
+
+ internal XcapCallback(IntPtr cPtr, bool cMemoryOwn) {
+ swigCMemOwn = cMemoryOwn;
+ swigCPtr = new HandleRef(this, cPtr);
+ }
+
+ internal static HandleRef getCPtr(XcapCallback obj) {
+ return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
+ }
+
+ ~XcapCallback() {
+ Dispose();
+ }
+
+ public virtual void Dispose() {
+ lock(this) {
+ if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) {
+ swigCMemOwn = false;
+ tinyWRAPPINVOKE.delete_XcapCallback(swigCPtr);
+ }
+ swigCPtr = new HandleRef(null, IntPtr.Zero);
+ GC.SuppressFinalize(this);
+ }
+ }
+
+ public XcapCallback() : this(tinyWRAPPINVOKE.new_XcapCallback(), true) {
+ SwigDirectorConnect();
+ }
+
+ public virtual int onEvent(XcapEvent e) {
+ int ret = ((this.GetType() == typeof(XcapCallback)) ? tinyWRAPPINVOKE.XcapCallback_onEvent(swigCPtr, XcapEvent.getCPtr(e)) : tinyWRAPPINVOKE.XcapCallback_onEventSwigExplicitXcapCallback(swigCPtr, XcapEvent.getCPtr(e)));
+ return ret;
+ }
+
+ private void SwigDirectorConnect() {
+ if (SwigDerivedClassHasMethod("onEvent", swigMethodTypes0))
+ swigDelegate0 = new SwigDelegateXcapCallback_0(SwigDirectoronEvent);
+ tinyWRAPPINVOKE.XcapCallback_director_connect(swigCPtr, swigDelegate0);
+ }
+
+ private bool SwigDerivedClassHasMethod(string methodName, Type[] methodTypes) {
+ System.Reflection.MethodInfo methodInfo = this.GetType().GetMethod(methodName, System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance, null, methodTypes, null);
+ bool hasDerivedMethod = methodInfo.DeclaringType.IsSubclassOf(typeof(XcapCallback));
+ return hasDerivedMethod;
+ }
+
+ private int SwigDirectoronEvent(IntPtr e) {
+ return onEvent((e == IntPtr.Zero) ? null : new XcapEvent(e, false));
+ }
+
+ public delegate int SwigDelegateXcapCallback_0(IntPtr e);
+
+ private SwigDelegateXcapCallback_0 swigDelegate0;
+
+ private static Type[] swigMethodTypes0 = new Type[] { typeof(XcapEvent) };
+}
+
+}
OpenPOWER on IntegriCloud