ee02f01273f73ae9f258c7d4bdd9683ba2ff9c29
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / NFC / INdefRecord.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 _ABSTRACT_LAYER_INDEFRECORD_H_
20 #define _ABSTRACT_LAYER_INDEFRECORD_H_
21
22 #include <vector>
23 #include <dpl/shared_ptr.h>
24 #include "NdefRecordProperties.h"
25
26
27 namespace TizenApis {
28 namespace Api {
29 namespace NFC {
30
31 class INdefRecord
32 {
33     public:
34                                        INdefRecord() {}
35        virtual                     ~INdefRecord() {}
36         virtual void *getHandle() = 0;
37         virtual NdefRecordProperties getNDEFRecordProperties() = 0;
38         virtual std::vector<unsigned char> getPayload() = 0;
39         virtual bool getText(char **text) = 0;
40         virtual bool getLangCode(char **landCode) = 0;
41         virtual bool getEncodeType(nfcTextEncodeUTF *encodeType) = 0;
42         virtual bool getUri(char **uri) = 0;
43         virtual bool getMimeType(char **mimeType) = 0;
44     protected:
45
46 };
47
48 typedef DPL::SharedPtr<INdefRecord> INdefRecordPtr;
49
50 }
51 }
52 }
53
54 #endif /* _ABSTRACT_LAYER_INDEFRECORD_H_ */