blob: 5d4931df2592e6f284edbc25d1e591fcb4f81e45 [file] [log] [blame]
Jeff Thompson76317aa2013-06-25 19:11:48 -07001/*
2 * Author: Jeff Thompson
3 *
4 * BSD license, See the LICENSE file for more information.
5 */
6
7#ifndef BINARYXMLSTRUCTUREDECODER_HPP
8#define BINARYXMLSTRUCTUREDECODER_HPP
9
10#include "BinaryXMLStructureDecoder.h"
11
12namespace ndn {
13class BinaryXMLStructureDecoder {
14public:
15 BinaryXMLStructureDecoder() {
16 ndn_BinaryXMLStructureDecoder_init(&base);
17 }
18
19private:
20 struct ndn_BinaryXMLStructureDecoder base;
21};
22}
23
24#endif /* BINARYXMLSTRUCTUREDECODER_HPP */
25