Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / NFC / INdefMessage.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_INDEFMESSAGE_H_
20 #define _ABSTRACT_LAYER_INDEFMESSAGE_H_
21
22 #include <dpl/shared_ptr.h>
23 #include <vector>
24 #include "NdefRecordProperties.h"
25
26 namespace TizenApis {
27 namespace Api {
28 namespace NFC {
29
30 class INdefMessage
31 {
32     public:
33
34                                        INdefMessage() {}
35         virtual                     ~INdefMessage() {}
36         virtual void *getHandle() = 0;
37         virtual void *getRecordHandle(const long index) = 0;
38         virtual std::vector<unsigned char> toByte()= 0;
39         virtual long getRecordCount() = 0;
40         virtual NdefRecordData getNDEFRecord(const long index) = 0;
41         virtual bool insertNDEFRecord(const long index, const void *recordHandle) = 0;
42         virtual bool appendNDEFRecord(const void *recordHandle) = 0;
43         virtual bool removeNDEFRecord(const long index) = 0;
44         virtual void changeAllRecords(const std::vector<void *> ndefRcords) = 0;
45 };
46
47 typedef DPL::SharedPtr<INdefMessage> INdefMessagePtr;
48
49 }
50 }
51 }
52
53 #endif /* _ABSTRACT_LAYER_INDEFMESSAGE_H_ */