commit | 6f038a7b60337c6b00ff7685db9ad4d527b68e62 | [log] [tgz] |
---|---|---|
author | Marc Slemko <marc@apache.org> | Thu Aug 03 18:58:09 2006 +0000 |
committer | Marc Slemko <marc@apache.org> | Thu Aug 03 18:58:09 2006 +0000 |
tree | 9302a705f2cb05a4e262652719b696214ba308ec | |
parent | 03eafbeac934f6dd52bfb7c10193b6a6d02d8630 [diff] [blame] |
Converted concurrency classes to use boost::shared_ptr and boost::weak_ptr: Wrapped all thrift code in facebook::thrift:: namespace git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664735 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/cpp/src/transport/TServerSocket.h b/lib/cpp/src/transport/TServerSocket.h index ca30a03..c18a8d2 100644 --- a/lib/cpp/src/transport/TServerSocket.h +++ b/lib/cpp/src/transport/TServerSocket.h
@@ -3,6 +3,8 @@ #include "transport/TServerTransport.h" +namespace facebook { namespace thrift { namespace transport { + class TSocket; /** @@ -29,4 +31,6 @@ int acceptBacklog_; }; +}}} // facebook::thrift::transport + #endif