Update change log and spec for wrt-plugins-tizen_0.4.13
[framework/web/wrt-plugins-tizen.git] / src / Bluetooth / JSBluetoothManager.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
19 #ifndef TIZENAPIS_TIZEN_JS_BLUETOOTH_H_
20 #define TIZENAPIS_TIZEN_JS_BLUETOOTH_H_
21
22 #include <JavaScriptCore/JavaScript.h>
23  #include <CommonsJavaScript/PrivateObject.h>
24
25 using namespace WrtDeviceApis;
26  
27  namespace DeviceAPI {
28  namespace Bluetooth {
29
30 typedef WrtDeviceApis::CommonsJavaScript::PrivateObjectT<void>::Type JSBluetoothManagerPriv;
31
32 class JSBluetoothManager 
33 {
34 public:
35         static const JSClassDefinition* getClassInfo();
36         static const JSClassRef getClassRef();
37
38 private:
39         static void initialize(JSContextRef context, JSObjectRef object);
40         static void finalize(JSObjectRef object);
41         static bool hasInstance(JSContextRef context, JSObjectRef constructor, JSValueRef possibleInstance, JSValueRef* exception);
42         
43         /**
44          * Sets attributes into JS object.
45          */
46         static void setAttributesIntoJSObject(JSContextRef context,
47                         JSObjectRef object);
48         static JSValueRef getDefaultAdapter(JSContextRef context, JSObjectRef object, 
49                 JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[],
50                 JSValueRef* exception) ;
51         static JSClassDefinition m_classInfo;
52         static JSStaticFunction m_function[];
53         static JSStaticValue m_properties[];
54         static JSClassRef m_jsClassRef;
55 };
56 }
57
58
59 #endif
60