blob: 369dfc5611f8d8ffa7fea570b3e2ba6305136c4d [file] [log] [blame]
Jeff Thompson47eecfc2013-07-07 22:56:46 -07001/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07002 * Copyright (C) 2013 Regents of the University of California.
3 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompson47eecfc2013-07-07 22:56:46 -07004 * See COPYING for copyright and distribution information.
Jeff Thompson333c4462013-06-28 14:04:22 -07005 */
6
7#ifndef NDN_BINARYXMLNAME_H
Jeff Thompson2d27e2f2013-08-09 12:55:00 -07008#define NDN_BINARYXMLNAME_H
Jeff Thompson333c4462013-06-28 14:04:22 -07009
Jeff Thompson8b666002013-07-08 01:16:26 -070010#include "../errors.h"
Jeff Thompson53412192013-08-06 13:35:50 -070011#include "../name.h"
12#include "binary-xml-encoder.h"
13#include "binary-xml-decoder.h"
Jeff Thompson333c4462013-06-28 14:04:22 -070014
Jeff Thompson2d27e2f2013-08-09 12:55:00 -070015#ifdef __cplusplus
Jeff Thompson333c4462013-06-28 14:04:22 -070016extern "C" {
17#endif
18
Jeff Thompsonf0fea002013-07-30 17:22:42 -070019ndn_Error ndn_encodeBinaryXmlName(struct ndn_Name *name, struct ndn_BinaryXmlEncoder *encoder);
Jeff Thompson1156ed12013-07-01 16:13:56 -070020
Jeff Thompsonf0fea002013-07-30 17:22:42 -070021ndn_Error ndn_decodeBinaryXmlName(struct ndn_Name *name, struct ndn_BinaryXmlDecoder *decoder);
Jeff Thompson333c4462013-06-28 14:04:22 -070022
Jeff Thompson2d27e2f2013-08-09 12:55:00 -070023#ifdef __cplusplus
Jeff Thompson333c4462013-06-28 14:04:22 -070024}
25#endif
26
27#endif
28