Added initial NDN class
diff --git a/ndn-cpp/NDN.hpp b/ndn-cpp/NDN.hpp
new file mode 100644
index 0000000..a89918b
--- /dev/null
+++ b/ndn-cpp/NDN.hpp
@@ -0,0 +1,20 @@
+/**
+ * @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