Jeff Thompson | b7f9556 | 2013-07-03 18:36:42 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Author: Jeff Thompson |
| 3 | * |
| 4 | * BSD license, See the LICENSE file for more information. |
| 5 | */ |
| 6 | |
| 7 | #ifndef NDN_BINARYXMLINTEREST_H |
| 8 | #define NDN_BINARYXMLINTEREST_H |
| 9 | |
| 10 | #include "../Interest.h" |
| 11 | |
| 12 | #ifdef __cplusplus |
| 13 | extern "C" { |
| 14 | #endif |
| 15 | |
| 16 | char *ndn_encodeBinaryXMLInterest(struct ndn_Interest *interest, struct ndn_BinaryXMLEncoder *encoder); |
| 17 | |
Jeff Thompson | fbea515 | 2013-07-03 18:48:05 -0700 | [diff] [blame] | 18 | char *ndn_decodeBinaryXMLInterest(struct ndn_Interest *interest, struct ndn_BinaryXMLDecoder *decoder); |
Jeff Thompson | b7f9556 | 2013-07-03 18:36:42 -0700 | [diff] [blame] | 19 | |
| 20 | #ifdef __cplusplus |
| 21 | } |
| 22 | #endif |
| 23 | |
| 24 | #endif |
| 25 | |