blob: e8c955b9a06214462eba28f07decde54129ab107 [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
Jeff Thompson2d27e2f2013-08-09 12:55:00 -07007#define NDN_BINARYXMLINTEREST_H
Jeff Thompsonb7f95562013-07-03 18:36:42 -07008
Jeff Thompson8b666002013-07-08 01:16:26 -07009#include "../errors.h"
Jeff Thompson53412192013-08-06 13:35:50 -070010#include "../interest.h"
11#include "binary-xml-encoder.h"
12#include "binary-xml-decoder.h"
Jeff Thompsonb7f95562013-07-03 18:36:42 -070013
Jeff Thompson2d27e2f2013-08-09 12:55:00 -070014#ifdef __cplusplus
Jeff Thompsonb7f95562013-07-03 18:36:42 -070015extern "C" {
16#endif
17
Jeff Thompsonf0fea002013-07-30 17:22:42 -070018ndn_Error ndn_encodeBinaryXmlInterest(struct ndn_Interest *interest, struct ndn_BinaryXmlEncoder *encoder);
Jeff Thompsonb7f95562013-07-03 18:36:42 -070019
Jeff Thompsonf0fea002013-07-30 17:22:42 -070020ndn_Error ndn_decodeBinaryXmlInterest(struct ndn_Interest *interest, struct ndn_BinaryXmlDecoder *decoder);
Jeff Thompsonb7f95562013-07-03 18:36:42 -070021
Jeff Thompson2d27e2f2013-08-09 12:55:00 -070022#ifdef __cplusplus
Jeff Thompsonb7f95562013-07-03 18:36:42 -070023}
24#endif
25
26#endif
27