Added Transport class
diff --git a/ndn-cpp/transport/Transport.hpp b/ndn-cpp/transport/Transport.hpp
new file mode 100644
index 0000000..85fe1b7
--- /dev/null
+++ b/ndn-cpp/transport/Transport.hpp
@@ -0,0 +1,22 @@
+/**
+ * @author: Jeff Thompson
+ * See COPYING for copyright and distribution information.
+ */
+
+#ifndef NDN_TRANSPORT_HPP
+#define	NDN_TRANSPORT_HPP
+
+namespace ndn {
+  
+class Transport {
+public:
+  virtual void connect(char *host, unsigned short port);
+  
+  virtual void send(unsigned char *data, unsigned int dataLength);
+  
+  virtual unsigned int receive(unsigned char *buffer, unsigned int bufferLength);
+};
+
+}
+
+#endif