Rationalized include-directory schema
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664747 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/cpp/src/transport/TBufferedTransport.h b/lib/cpp/src/transport/TBufferedTransport.h
index 922754e..c94d926 100644
--- a/lib/cpp/src/transport/TBufferedTransport.h
+++ b/lib/cpp/src/transport/TBufferedTransport.h
@@ -1,7 +1,7 @@
#ifndef T_BUFFERED_TRANSPORT_H
#define T_BUFFERED_TRANSPORT_H
-#include <transport/TTransport.h>
+#include "TTransport.h"
#include <string>
#include <boost/shared_ptr.hpp>
diff --git a/lib/cpp/src/transport/TChunkedTransport.h b/lib/cpp/src/transport/TChunkedTransport.h
index 0fe8d75..c6312d0 100644
--- a/lib/cpp/src/transport/TChunkedTransport.h
+++ b/lib/cpp/src/transport/TChunkedTransport.h
@@ -1,7 +1,7 @@
#ifndef T_CHUNKED_TRANSPORT_H
#define T_CHUNKED_TRANSPORT_H
-#include <transport/TTransport.h>
+#include "TTransport.h"
#include <string>
#include <boost/shared_ptr.hpp>
diff --git a/lib/cpp/src/transport/TNullTransport.h b/lib/cpp/src/transport/TNullTransport.h
index 2522148..8bb5bd2 100644
--- a/lib/cpp/src/transport/TNullTransport.h
+++ b/lib/cpp/src/transport/TNullTransport.h
@@ -1,7 +1,7 @@
#ifndef T_NULL_TRANSPORT
#define T_NULL_TRANSPORT
-#include "transport/TTransport.h"
+#include "TTransport.h"
namespace facebook { namespace thrift { namespace transport {
diff --git a/lib/cpp/src/transport/TServerSocket.cc b/lib/cpp/src/transport/TServerSocket.cc
index 003ddec..75bd504 100644
--- a/lib/cpp/src/transport/TServerSocket.cc
+++ b/lib/cpp/src/transport/TServerSocket.cc
@@ -2,8 +2,8 @@
#include <netinet/in.h>
#include <errno.h>
-#include "transport/TSocket.h"
-#include "transport/TServerSocket.h"
+#include "TSocket.h"
+#include "TServerSocket.h"
#include <boost/shared_ptr.hpp>
namespace facebook { namespace thrift { namespace transport {
diff --git a/lib/cpp/src/transport/TServerSocket.h b/lib/cpp/src/transport/TServerSocket.h
index 619a366..a7af44b 100644
--- a/lib/cpp/src/transport/TServerSocket.h
+++ b/lib/cpp/src/transport/TServerSocket.h
@@ -1,7 +1,7 @@
#ifndef T_SERVER_SOCKET_H
#define T_SERVER_SOCKET_H
-#include <transport/TServerTransport.h>
+#include "TServerTransport.h"
#include <boost/shared_ptr.hpp>
namespace facebook { namespace thrift { namespace transport {
diff --git a/lib/cpp/src/transport/TServerTransport.h b/lib/cpp/src/transport/TServerTransport.h
index f51e88c..390fa70 100644
--- a/lib/cpp/src/transport/TServerTransport.h
+++ b/lib/cpp/src/transport/TServerTransport.h
@@ -1,8 +1,8 @@
#ifndef T_SERVER_TRANSPORT_H
#define T_SERVER_TRANSPORT_H
-#include "transport/TTransport.h"
-#include "transport/TTransportException.h"
+#include "TTransport.h"
+#include "TTransportException.h"
#include <boost/shared_ptr.hpp>
namespace facebook { namespace thrift { namespace transport {
diff --git a/lib/cpp/src/transport/TSocket.cc b/lib/cpp/src/transport/TSocket.cc
index a1e0327..eef76ef 100644
--- a/lib/cpp/src/transport/TSocket.cc
+++ b/lib/cpp/src/transport/TSocket.cc
@@ -7,8 +7,8 @@
#include <unistd.h>
#include <errno.h>
-#include "transport/TSocket.h"
-#include "transport/TTransportException.h"
+#include "TSocket.h"
+#include "TTransportException.h"
namespace facebook { namespace thrift { namespace transport {
diff --git a/lib/cpp/src/transport/TSocket.h b/lib/cpp/src/transport/TSocket.h
index 8a6fc8f..bf90b63 100644
--- a/lib/cpp/src/transport/TSocket.h
+++ b/lib/cpp/src/transport/TSocket.h
@@ -3,8 +3,8 @@
#include <string>
-#include "transport/TTransport.h"
-#include "transport/TServerSocket.h"
+#include "TTransport.h"
+#include "TServerSocket.h"
namespace facebook { namespace thrift { namespace transport {
diff --git a/lib/cpp/src/transport/TTransport.h b/lib/cpp/src/transport/TTransport.h
index e9366d3..e5e40e4 100644
--- a/lib/cpp/src/transport/TTransport.h
+++ b/lib/cpp/src/transport/TTransport.h
@@ -1,8 +1,8 @@
#ifndef T_TRANSPORT_H
#define T_TRANSPORT_H
+#include "TTransportException.h"
#include <string>
-#include "transport/TTransportException.h"
namespace facebook { namespace thrift { namespace transport {