blob: f165c4b47bf6a68c3914875291d8ec33fadafe46 [file] [log] [blame]
Jeff Thompson47eecfc2013-07-07 22:56:46 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
Jeff Thompson333c4462013-06-28 14:04:22 -07004 */
5
6#ifndef NDN_BINARYXMLNAME_H
7#define NDN_BINARYXMLNAME_H
8
Jeff Thompson8b666002013-07-08 01:16:26 -07009#include "../errors.h"
Jeff Thompson333c4462013-06-28 14:04:22 -070010#include "../Name.h"
Jeff Thompson1f3f5172013-07-01 19:02:36 -070011#include "BinaryXMLEncoder.h"
Jeff Thompsonca52c492013-07-10 12:00:01 -070012#include "BinaryXMLDecoder.h"
Jeff Thompson333c4462013-06-28 14:04:22 -070013
14#ifdef __cplusplus
15extern "C" {
16#endif
17
Jeff Thompsonf0fea002013-07-30 17:22:42 -070018ndn_Error ndn_encodeBinaryXmlName(struct ndn_Name *name, struct ndn_BinaryXmlEncoder *encoder);
Jeff Thompson1156ed12013-07-01 16:13:56 -070019
Jeff Thompsonf0fea002013-07-30 17:22:42 -070020ndn_Error ndn_decodeBinaryXmlName(struct ndn_Name *name, struct ndn_BinaryXmlDecoder *decoder);
Jeff Thompson333c4462013-06-28 14:04:22 -070021
22#ifdef __cplusplus
23}
24#endif
25
26#endif
27