blob: 12de088d334b2a8029178a5e72c17f26a4422214 [file] [log] [blame]
Jeff Thompson47eecfc2013-07-07 22:56:46 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
Jeff Thompsonb7f95562013-07-03 18:36:42 -07004 */
5
6#ifndef NDN_BINARYXMLINTEREST_H
7#define NDN_BINARYXMLINTEREST_H
8
9#include "../Interest.h"
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15char *ndn_encodeBinaryXMLInterest(struct ndn_Interest *interest, struct ndn_BinaryXMLEncoder *encoder);
16
Jeff Thompsonfbea5152013-07-03 18:48:05 -070017char *ndn_decodeBinaryXMLInterest(struct ndn_Interest *interest, struct ndn_BinaryXMLDecoder *decoder);
Jeff Thompsonb7f95562013-07-03 18:36:42 -070018
19#ifdef __cplusplus
20}
21#endif
22
23#endif
24