manual nui merge 0.2.38
[platform/core/csapi/nui.git] / Tizen.NUI / src / internal / ConnectionTrackerInterface.cs
1 //------------------------------------------------------------------------------
2 // <auto-generated />
3 //
4 // This file was automatically generated by SWIG (http://www.swig.org).
5 // Version 3.0.9
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
11 namespace Tizen.NUI {
12
13     public class ConnectionTrackerInterface : SignalObserver {
14   private global::System.Runtime.InteropServices.HandleRef swigCPtr;
15
16   internal ConnectionTrackerInterface(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.ConnectionTrackerInterface_SWIGUpcast(cPtr), cMemoryOwn) {
17     swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
18   }
19
20   internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ConnectionTrackerInterface obj) {
21     return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
22   }
23
24   public override void Dispose() {
25     if (!Window.IsInstalled()) {
26       DisposeQueue.Instance.Add(this);
27       return;
28     }
29
30     lock(this) {
31       if (swigCPtr.Handle != global::System.IntPtr.Zero) {
32         if (swigCMemOwn) {
33           swigCMemOwn = false;
34           NDalicPINVOKE.delete_ConnectionTrackerInterface(swigCPtr);
35         }
36         swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
37       }
38       global::System.GC.SuppressFinalize(this);
39       base.Dispose();
40     }
41   }
42
43
44   public virtual void SignalConnected(SlotObserver slotObserver, SWIGTYPE_p_CallbackBase callback) {
45     NDalicPINVOKE.ConnectionTrackerInterface_SignalConnected(swigCPtr, SlotObserver.getCPtr(slotObserver), SWIGTYPE_p_CallbackBase.getCPtr(callback));
46     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
47   }
48
49 }
50
51 }