blob: 559af7f637f2422764965761f6a67b0f8f3c7066 [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
Jeff Thompson97223af2013-09-24 17:01:27 -070012ElementListener::staticOnReceivedElement(struct ndn_ElementListener *self, uint8_t *element, size_t elementLength)
Jeff Thompson482fbd52013-07-15 16:45:29 -070013{
14 ((ElementListener *)self)->onReceivedElement(element, elementLength);
15}
16
17}