Git Init
[profile/ivi/wrt-plugins-tizen.git] / src / platform / Tizen / NFC / NFCUtil.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 _NFCUTIL_H_
20 #define _NFCUTIL_H_
21
22 #include <vector>
23 #include <API/NFC/NdefRecordProperties.h>
24 #include <API/NFC/INFCTag.h>
25
26 using namespace TizenApis::Api::NFC;
27
28 namespace TizenApis {
29 namespace Platform {
30 namespace NFC {
31
32 class NFCUtil 
33 {
34
35     public:
36                 NFCUtil() {}
37         virtual  ~NFCUtil() {}
38         std::vector<unsigned char> toVector(const unsigned char *ch, const int size);
39         unsigned char *toCharPtr(std::vector<unsigned char> vec) ;
40         char *byteToString(const unsigned char* buffer, const int size);
41         char *byteToString(std::vector<unsigned char> buffer);
42         nfcTagType convertTonfcTagType(const unsigned short type);
43         unsigned short convertToTNF(nfcTNF tnf);
44         nfcTNF convertTonfcTNF(unsigned short tnf);
45
46 };
47
48 }
49 }
50 }
51
52 #endif /* _NFCUTIL_H_ */