Major code style change to rename all files to lower case.
diff --git a/ndn-cpp/encoding/binary-xml-element-reader.cpp b/ndn-cpp/encoding/binary-xml-element-reader.cpp
new file mode 100644
index 0000000..e326dbf
--- /dev/null
+++ b/ndn-cpp/encoding/binary-xml-element-reader.cpp
@@ -0,0 +1,15 @@
+/**
+ * @author: Jeff Thompson
+ * See COPYING for copyright and distribution information.
+ */
+
+#include "binary-xml-element-reader.hpp"
+
+namespace ndn {
+
+void ElementListener::staticOnReceivedElement(struct ndn_ElementListener *self, unsigned char *element, unsigned int elementLength)
+{
+ ((ElementListener *)self)->onReceivedElement(element, elementLength);
+}
+
+}