Jeff Thompson | 482fbd5 | 2013-07-15 16:45:29 -0700 | [diff] [blame] | 1 | /** |
| 2 | * @author: Jeff Thompson |
| 3 | * See COPYING for copyright and distribution information. |
| 4 | */ |
| 5 | |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 6 | #include "binary-xml-element-reader.hpp" |
Jeff Thompson | 482fbd5 | 2013-07-15 16:45:29 -0700 | [diff] [blame] | 7 | |
| 8 | namespace ndn { |
| 9 | |
| 10 | void ElementListener::staticOnReceivedElement(struct ndn_ElementListener *self, unsigned char *element, unsigned int elementLength) |
| 11 | { |
| 12 | ((ElementListener *)self)->onReceivedElement(element, elementLength); |
| 13 | } |
| 14 | |
| 15 | } |