blob: 2b23e0de4f9825aedbfd38148a2478d0e65b8158 [file] [log] [blame]
Jeff Thompsonb7f95562013-07-03 18:36:42 -07001/*
2 * Author: Jeff Thompson
3 *
4 * BSD license, See the LICENSE file for more information.
5 */
6
7#ifndef NDN_BINARYXMLINTEREST_H
8#define NDN_BINARYXMLINTEREST_H
9
10#include "../Interest.h"
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16char *ndn_encodeBinaryXMLInterest(struct ndn_Interest *interest, struct ndn_BinaryXMLEncoder *encoder);
17
Jeff Thompsonfbea5152013-07-03 18:48:05 -070018char *ndn_decodeBinaryXMLInterest(struct ndn_Interest *interest, struct ndn_BinaryXMLDecoder *decoder);
Jeff Thompsonb7f95562013-07-03 18:36:42 -070019
20#ifdef __cplusplus
21}
22#endif
23
24#endif
25