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/server/TSimpleServer.cc b/lib/cpp/src/server/TSimpleServer.cc
index 03069ae..7199ab9 100644
--- a/lib/cpp/src/server/TSimpleServer.cc
+++ b/lib/cpp/src/server/TSimpleServer.cc
@@ -5,6 +5,8 @@
#include <iostream>
using namespace std;
+namespace facebook { namespace thrift { namespace server {
+
/**
* A simple single-threaded application server. Perfect for unit tests!
*
@@ -52,3 +54,5 @@
// TODO(mcslee): Could this be a timeout case? Or always the real thing?
}
+
+}}} // facebook::thrift::server