upload tizen1.0 source
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Bluetooth / EventBTCreateDestroyBonding.h
old mode 100755 (executable)
new mode 100644 (file)
index b980292..0a77fb9
@@ -22,7 +22,6 @@
 #include <dpl/shared_ptr.h>
 #include "BTDevice.h"
 
-
 namespace TizenApis {
 namespace Api {
 namespace Bluetooth {
@@ -34,8 +33,8 @@ private:
        bool m_operation;
        BluetoothDeviceData m_device;
 public:
-       EventBTCreateDestroyBonding() { LogDebug("entered"); }
-       ~EventBTCreateDestroyBonding() { }
+       EventBTCreateDestroyBonding() ;
+       ~EventBTCreateDestroyBonding() ;
        void setAddress(std::string address) { m_address = address;}
        std::string getAddress() { return m_address;}
        void setCreateBonding(void) { m_operation = true; }
@@ -44,6 +43,7 @@ public:
        bool isDestroyBonding(void) { return m_operation == true;}
        BluetoothDeviceData getDevice() { return m_device;}
        void setDevice(BluetoothDeviceData device) { m_device = device;}
+       virtual bool cancelRequest();
 };
 
 typedef DPL::SharedPtr<EventBTCreateDestroyBonding> EventBTCreateDestroyBondingPtr;