2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #ifndef _NDEFMESSAGE_H_
20 #define _NDEFMESSAGE_H_
22 #include <API/NFC/INdefMessage.h>
25 using namespace TizenApis::Api::NFC;
31 class NdefMessage : public INdefMessage
33 friend class NFCFactory;
36 NdefMessage(void *messageHandle);
37 NdefMessage(const std::vector<void *> ndefRcords);
38 NdefMessage(const std::vector<unsigned char> rawdata);
39 virtual ~NdefMessage();
41 virtual void *getHandle();
42 virtual void *getRecordHandle(const long index);
43 virtual std::vector<unsigned char> toByte();
44 virtual long getRecordCount();
45 virtual NdefRecordData getNDEFRecord(const long index);
46 virtual bool insertNDEFRecord(const long index, const void *recordHandle);
47 virtual bool appendNDEFRecord(const void *recordHandle);
48 virtual bool removeNDEFRecord(const long index);
49 virtual void changeAllRecords(const std::vector<void *> ndefRcords);
51 nfc_ndef_message_h handle;
52 bool _copyNDEFRecord(nfc_ndef_record_h *srcHandle, nfc_ndef_record_h *destHandle);
53 void _makeMessage(const std::vector<void *> ndefRcords);
60 #endif /* _NDEFMESSAGE_H_ */