Jeff Thompson | 4069ce9 | 2013-07-10 19:41:55 -0700 | [diff] [blame] | 1 | /** |
| 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 | |
| 13 | ndn_Error ndn_encodeBinaryXMLContentObject(struct ndn_ContentObject *contentObject, struct ndn_BinaryXMLEncoder *encoder) |
| 14 | { |
| 15 | return 0; |
| 16 | } |
| 17 | |
| 18 | ndn_Error ndn_decodeBinaryXMLContentObject(struct ndn_ContentObject *contentObject, struct ndn_BinaryXMLDecoder *decoder) |
| 19 | { |
| 20 | return 0; |
| 21 | } |