blob: 38917aa51925c0bd7265e0aa538f1be072fce23c [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
Jeff Thompson8b666002013-07-08 01:16:26 -07009#include "../errors.h"
Jeff Thompsonb7f95562013-07-03 18:36:42 -070010#include "../Interest.h"
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
Jeff Thompson8b666002013-07-08 01:16:26 -070016ndn_Error ndn_encodeBinaryXMLInterest(struct ndn_Interest *interest, struct ndn_BinaryXMLEncoder *encoder);
Jeff Thompsonb7f95562013-07-03 18:36:42 -070017
Jeff Thompson8b666002013-07-08 01:16:26 -070018ndn_Error 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