blob: c943f4babdbac9da0389c634aa5feb9d723cd873 [file] [log] [blame]
Jeff Thompson333c4462013-06-28 14:04:22 -07001/*
2 * Author: Jeff Thompson
3 *
4 * BSD license, See the LICENSE file for more information.
5 */
6
7#ifndef NDN_BINARYXMLNAME_H
8#define NDN_BINARYXMLNAME_H
9
10#include "../Name.h"
Jeff Thompson1f3f5172013-07-01 19:02:36 -070011#include "BinaryXMLEncoder.h"
Jeff Thompson333c4462013-06-28 14:04:22 -070012
13#ifdef __cplusplus
14extern "C" {
15#endif
16
Jeff Thompson1156ed12013-07-01 16:13:56 -070017char *ndn_encodeBinaryXMLName(struct ndn_Name *name, struct ndn_BinaryXMLEncoder *encoder);
18
Jeff Thompsone2c232d2013-07-03 18:47:29 -070019char *ndn_decodeBinaryXMLName(struct ndn_Name *name, struct ndn_BinaryXMLDecoder *decoder);
Jeff Thompson333c4462013-06-28 14:04:22 -070020
21#ifdef __cplusplus
22}
23#endif
24
25#endif
26