blob: ebe23703ed67b7aa03187051a90d91f2ef2ad0bb [file] [log] [blame]
Jeff Thompson56ec9e22013-08-02 11:34:07 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
4 */
5
6#ifndef NDN_BINARY_XML_DATA_H
7#define NDN_BINARY_XML_DATA_H
8
9#include "../errors.h"
10#include "../data.h"
Jeff Thompson53412192013-08-06 13:35:50 -070011#include "binary-xml-encoder.h"
12#include "binary-xml-decoder.h"
Jeff Thompson56ec9e22013-08-02 11:34:07 -070013
14#ifdef __cplusplus
15extern "C" {
16#endif
17
18ndn_Error ndn_encodeBinaryXmlData(struct ndn_Data *data, struct ndn_BinaryXmlEncoder *encoder);
19
20ndn_Error ndn_decodeBinaryXmlData(struct ndn_Data *data, struct ndn_BinaryXmlDecoder *decoder);
21
22#ifdef __cplusplus
23}
24#endif
25
26#endif