58a0f5e4a36ce77cee9be2207e000b2950ae0c1d
[framework/web/wrt-plugins-tizen.git] / src / SecureElement / SEConverter.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
20 #ifndef _JS_TIZEN_SE_CONVERTER_H_
21 #define _JS_TIZEN_SE_CONVERTER_H_
22
23 #include <vector>
24 #include <JavaScriptCore/JavaScript.h>
25 #include <CommonsJavaScript/Converter.h>
26 #include "SEListener.h"
27
28 namespace DeviceAPI {
29 namespace SecureElement {
30
31
32 class SEConverter : public WrtDeviceApis::CommonsJavaScript::Converter
33 {
34     public:
35         using WrtDeviceApis::CommonsJavaScript::Converter::toJSValueRef;
36     public:
37         explicit SEConverter(JSContextRef context);
38         virtual  ~SEConverter();
39
40         JSValueRef toJSValueRef(const std::vector<unsigned char>& arg);
41         SEListener toSEListener(const JSValueRef& arg);
42 };
43
44 typedef WrtDeviceApis::CommonsJavaScript::ConverterFactory<SEConverter> SEConverterFactory;
45
46 }
47 }
48
49 #endif /* _JS_TIZEN_SE_CONVERTER_H_ */