blob: a89918b179dce590fa8face0ffe4391efe09a619 [file] [log] [blame]
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
4 */
5
6#ifndef NDN_NDN_HPP
7#define NDN_NDN_HPP
8
9#include "encoding/BinaryXMLElementReader.hpp"
10
11namespace ndn {
12
13class NDN : public ElementListener {
14public:
15 virtual void onReceivedElement(unsigned char *element, unsigned int elementLength);
16};
17
18}
19
20#endif