blob: a89918b179dce590fa8face0ffe4391efe09a619 [file] [log] [blame]
/**
* @author: Jeff Thompson
* See COPYING for copyright and distribution information.
*/
#ifndef NDN_NDN_HPP
#define NDN_NDN_HPP
#include "encoding/BinaryXMLElementReader.hpp"
namespace ndn {
class NDN : public ElementListener {
public:
virtual void onReceivedElement(unsigned char *element, unsigned int elementLength);
};
}
#endif