Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Bluetooth / BluetoothDeviceManagerListener.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  
18
19 #ifndef TIZENAPIS_TIZEN_BLUETOOTH_DEVICE_MANAGER_LISTENER_H_
20 #define TIZENAPIS_TIZEN_BLUETOOTH_DEVICE_MANAGER_LISTENER_H_
21
22 #include <map>
23 #include <dpl/shared_ptr.h>
24 #include <dpl/noncopyable.h>
25 #include <API/Bluetooth/IBluetoothDeviceManager.h>
26
27 using namespace TizenApis::Api;
28 using namespace TizenApis::Api::Bluetooth;
29 using namespace WrtDeviceApis::Commons;
30
31
32 namespace TizenApis {
33 namespace Tizen1_0 {
34         
35 typedef EventAnswerReceiver<EventBTConnectToServiceByUUID> EventBTConnectedAnswerReceiver;
36
37
38 class BluetoothDeviceManagerListener : 
39         public EventBTConnectedAnswerReceiver
40 {
41 private:
42         BluetoothDeviceManagerListener();
43 public:
44         static BluetoothDeviceManagerListener& getInstance();
45         virtual ~BluetoothDeviceManagerListener();
46 protected:
47
48         virtual void OnAnswerReceived(const EventBTConnectToServiceByUUIDPtr& event);
49 };
50
51 typedef DPL::SharedPtr<BluetoothDeviceManagerListener> BluetoothDeviceManagerListenerPtr;
52
53 }
54 }
55
56 #endif
57