blob: 6a7c5adf3156354ac7a1d57ae827c8f3fe77e5ec [file] [log] [blame]
Jeff Thompson482fbd52013-07-15 16:45:29 -07001/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07002 * Copyright (C) 2013 Regents of the University of California.
3 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompson482fbd52013-07-15 16:45:29 -07004 * See COPYING for copyright and distribution information.
5 */
6
Jeff Thompson53412192013-08-06 13:35:50 -07007#include "binary-xml-element-reader.hpp"
Jeff Thompson482fbd52013-07-15 16:45:29 -07008
9namespace ndn {
10
Jeff Thompson0050abe2013-09-17 12:50:25 -070011void
12ElementListener::staticOnReceivedElement(struct ndn_ElementListener *self, unsigned char *element, unsigned int elementLength)
Jeff Thompson482fbd52013-07-15 16:45:29 -070013{
14 ((ElementListener *)self)->onReceivedElement(element, elementLength);
15}
16
17}