Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame^] | 1 | /** |
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 | |||||
11 | namespace ndn { | ||||
12 | |||||
13 | class NDN : public ElementListener { | ||||
14 | public: | ||||
15 | virtual void onReceivedElement(unsigned char *element, unsigned int elementLength); | ||||
16 | }; | ||||
17 | |||||
18 | } | ||||
19 | |||||
20 | #endif |