blob: 559af7f637f2422764965761f6a67b0f8f3c7066 [file] [log] [blame]
/**
* Copyright (C) 2013 Regents of the University of California.
* @author: Jeff Thompson <jefft0@remap.ucla.edu>
* See COPYING for copyright and distribution information.
*/
#include "binary-xml-element-reader.hpp"
namespace ndn {
void
ElementListener::staticOnReceivedElement(struct ndn_ElementListener *self, uint8_t *element, size_t elementLength)
{
((ElementListener *)self)->onReceivedElement(element, elementLength);
}
}