Jeff Thompson | 76317aa | 2013-06-25 19:11:48 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 12 | namespace ndn { |
| 13 | class BinaryXMLStructureDecoder { |
| 14 | public: |
| 15 | BinaryXMLStructureDecoder() { |
| 16 | ndn_BinaryXMLStructureDecoder_init(&base); |
| 17 | } |
| 18 | |
| 19 | private: |
| 20 | struct ndn_BinaryXMLStructureDecoder base; |
| 21 | }; |
| 22 | } |
| 23 | |
| 24 | #endif /* BINARYXMLSTRUCTUREDECODER_HPP */ |
| 25 | |