blob: 764fc1eaa0cb0352299ebab235c9e9c99fec210a [file] [log] [blame]
Jeff Thompson47eecfc2013-07-07 22:56:46 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
Jeff Thompson333c4462013-06-28 14:04:22 -07004 */
5
6#ifndef NDN_BINARYXMLNAME_H
7#define NDN_BINARYXMLNAME_H
8
9#include "../Name.h"
Jeff Thompson1f3f5172013-07-01 19:02:36 -070010#include "BinaryXMLEncoder.h"
Jeff Thompson333c4462013-06-28 14:04:22 -070011
12#ifdef __cplusplus
13extern "C" {
14#endif
15
Jeff Thompson1156ed12013-07-01 16:13:56 -070016char *ndn_encodeBinaryXMLName(struct ndn_Name *name, struct ndn_BinaryXMLEncoder *encoder);
17
Jeff Thompsone2c232d2013-07-03 18:47:29 -070018char *ndn_decodeBinaryXMLName(struct ndn_Name *name, struct ndn_BinaryXMLDecoder *decoder);
Jeff Thompson333c4462013-06-28 14:04:22 -070019
20#ifdef __cplusplus
21}
22#endif
23
24#endif
25