blob: e597eb83f4e6b170187a11965e6d53b708adb722 [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
11void ElementListener::staticOnReceivedElement(struct ndn_ElementListener *self, unsigned char *element, unsigned int elementLength)
12{
13 ((ElementListener *)self)->onReceivedElement(element, elementLength);
14}
15
16}