blob: 38917aa51925c0bd7265e0aa538f1be072fce23c [file] [log] [blame]
/**
* @author: Jeff Thompson
* See COPYING for copyright and distribution information.
*/
#ifndef NDN_BINARYXMLINTEREST_H
#define NDN_BINARYXMLINTEREST_H
#include "../errors.h"
#include "../Interest.h"
#ifdef __cplusplus
extern "C" {
#endif
ndn_Error ndn_encodeBinaryXMLInterest(struct ndn_Interest *interest, struct ndn_BinaryXMLEncoder *encoder);
ndn_Error ndn_decodeBinaryXMLInterest(struct ndn_Interest *interest, struct ndn_BinaryXMLDecoder *decoder);
#ifdef __cplusplus
}
#endif
#endif