Added Transport class
diff --git a/ndn-cpp/transport/Transport.cpp b/ndn-cpp/transport/Transport.cpp
new file mode 100644
index 0000000..950b1cb
--- /dev/null
+++ b/ndn-cpp/transport/Transport.cpp
@@ -0,0 +1,28 @@
+/**
+ * @author: Jeff Thompson
+ * See COPYING for copyright and distribution information.
+ */
+
+#include <stdexcept>
+#include "Transport.hpp"
+
+using namespace std;
+
+namespace ndn {
+
+void Transport::connect(char *host, unsigned short port)
+{
+ throw logic_error("unimplemented");
+}
+
+void Transport::send(unsigned char *data, unsigned int dataLength)
+{
+ throw logic_error("unimplemented");
+}
+
+unsigned int Transport::receive(unsigned char *buffer, unsigned int bufferLength)
+{
+ throw logic_error("unimplemented");
+}
+
+}