blob: 820ff41310a391ec349a1f7d596d3fc164b0aac5 [file] [log] [blame]
Jeff Thompson4069ce92013-07-10 19:41:55 -07001/**
2 * @author: Jeff Thompson
3 * Derived from ContentObject.js by Meki Cheraoui.
4 * See COPYING for copyright and distribution information.
5 */
6
7#include "BinaryXMLEncoder.h"
8#include "BinaryXMLDecoder.h"
9#include "BinaryXMLName.h"
10#include "BinaryXMLPublisherPublicKeyDigest.h"
11#include "BinaryXMLContentObject.h"
12
13ndn_Error ndn_encodeBinaryXMLContentObject(struct ndn_ContentObject *contentObject, struct ndn_BinaryXMLEncoder *encoder)
14{
15 return 0;
16}
17
18ndn_Error ndn_decodeBinaryXMLContentObject(struct ndn_ContentObject *contentObject, struct ndn_BinaryXMLDecoder *decoder)
19{
20 return 0;
21}