Git Init
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Bluetooth / EventBTCreateDestroyBonding.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License. 
15  */
16
17 #ifndef TIZENAPIS_API_BLUETOOTH_CREATE_DESTROY_BONDING_H_
18 #define TIZENAPIS_API_BLUETOOTH_CREATE_DESTROY_BONDING_H_
19
20
21 #include <Commons/IEvent.h>
22 #include <dpl/shared_ptr.h>
23 #include "BTDevice.h"
24
25
26 namespace TizenApis {
27 namespace Api {
28 namespace Bluetooth {
29
30 class EventBTCreateDestroyBonding : public WrtDeviceApis::Commons::IEvent<EventBTCreateDestroyBonding>
31 {
32 private:
33         std::string m_address;
34         bool m_operation;
35         BluetoothDeviceData m_device;
36 public:
37         EventBTCreateDestroyBonding() { LogDebug("entered"); }
38         ~EventBTCreateDestroyBonding() { }
39         void setAddress(std::string address) { m_address = address;}
40         std::string getAddress() { return m_address;}
41         void setCreateBonding(void) { m_operation = true; }
42         void setDestroyBonding(void) { m_operation = false; }
43         bool isCreateBonding(void) { return m_operation == true;}
44         bool isDestroyBonding(void) { return m_operation == true;}
45         BluetoothDeviceData getDevice() { return m_device;}
46         void setDevice(BluetoothDeviceData device) { m_device = device;}
47 };
48
49 typedef DPL::SharedPtr<EventBTCreateDestroyBonding> EventBTCreateDestroyBondingPtr;
50 }
51 }
52
53
54 #endif