Git Init
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Sensors / JSSensor.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 * @file          JSSensor.h
20 * @author        Pius Lee (pius.lee@samsung.com)
21 * @version       0.1
22 */
23
24 #ifndef _WRTPLUGINS_TIZEN_JS_SENSOR_
25 #define _WRTPLUGINS_TIZEN_JS_SENSOR_
26
27 #include <string>
28 #include <JavaScriptCore/JavaScript.h>
29 #include <sensors.h>
30
31 namespace TizenApis {
32 namespace Tizen1_0 {
33
34 class JSSensor {
35 public:
36     static const JSClassDefinition* getClassInfo();
37     static const JSClassRef getClassRef();
38
39     static const JSObjectRef getSensor(sensor_type_e sensor);
40
41     std::string type;
42     std::string name;
43     sensor_type_e typeId;
44
45 protected:
46     static void initialize(JSContextRef context, JSObjectRef object);
47     static void finalize(JSObjectRef object);
48     static bool hasInstance(JSContextRef context, JSObjectRef constructor, JSValueRef possibleInstance, JSValueRef* exception);
49
50 private:
51     static JSClassDefinition m_jsClassInfo;
52     static JSClassRef m_jsClassRef;
53 };
54
55 } // Tizen1_0
56 } // TizenApis
57
58 #endif