Use separate WireFormat class to handle encoding Name, Interest, etc.
diff --git a/ndn-cpp/Name.cpp b/ndn-cpp/Name.cpp
new file mode 100644
index 0000000..c66ecca
--- /dev/null
+++ b/ndn-cpp/Name.cpp
@@ -0,0 +1,14 @@
+/* 
+ * Author: Jeff Thompson
+ *
+ * BSD license, See the LICENSE file for more information.
+ */
+
+#include <stdexcept>
+#include "Name.hpp"
+
+using namespace std;
+
+namespace ndn {
+
+}