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 | |||||
6 | #include "BinaryXMLElementReader.hpp" | ||||
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 | } |