4452fd64cdc0d97c163c6ff27cbdc539d6523265
[platform/framework/web/wrt-plugins-tizen.git] / src / Bluetooth / BluetoothClass.h
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 #ifndef __TIZEN_BLUETOOTH_CLASS_H__
19 #define __TIZEN_BLUETOOTH_CLASS_H__
20
21 #include <string>
22 #include <vector>
23
24 #include <JavaScriptCore/JavaScript.h>
25 #include <bluetooth.h>
26
27 #include <boost/shared_ptr.hpp>
28 #include <PropertyBag.h>
29
30 namespace DeviceAPI {
31 namespace Bluetooth {
32
33 class BluetoothClass
34 {
35 public:
36     BluetoothClass(bt_class_s bluetoothClass);
37     virtual ~BluetoothClass();
38
39     unsigned long getMajor() const;
40     unsigned long getMinor() const;
41     JSValueRef getServices(JSContextRef context);
42
43     bool hasService(unsigned long service);
44
45 private:
46     unsigned long mMajor;
47     unsigned long mMinor;
48     std::vector<unsigned long> mServices;
49     Common::PropertyBag mLocalProperty;    
50 };
51
52 typedef boost::shared_ptr<BluetoothClass> BluetoothClassSharedPtr;
53
54 } // Bluetooth
55 } // DeviceAPI
56
57 #endif // __TIZEN_BLUETOOTH_CLASS_H__