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/TProcessor.h b/lib/cpp/src/TProcessor.h
index f01379d..2ed2430 100644
--- a/lib/cpp/src/TProcessor.h
+++ b/lib/cpp/src/TProcessor.h
@@ -4,6 +4,10 @@
#include <string>
#include "transport/TTransport.h"
+namespace facebook { namespace thrift {
+
+using namespace facebook::thrift::transport;
+
/**
* A processor is a generic object that acts upon two streams of data, one
* an input and the other an output. The definition of this object is loose,
@@ -21,4 +25,6 @@
TProcessor() {}
};
+}} // facebook::thrift
+
#endif