summaryrefslogtreecommitdiff
path: root/test/threads
diff options
context:
space:
mode:
authorT Jake Luciani <jake@apache.org>2009-01-31 22:36:20 +0000
committerT Jake Luciani <jake@apache.org>2009-01-31 22:36:20 +0000
commitb5e6221eb5cbabab25d5c9badb7262b15c42cfdd (patch)
treeb215dc9387b4b9e7cb454e0306fbe66ac0b2d42e /test/threads
parent3fa89e33f3e7e76a2f79546c72d1728492f12bef (diff)
downloadthrift-b5e6221eb5cbabab25d5c9badb7262b15c42cfdd.tar.gz
THRIFT-270: change cpp namespaces from facebook::thrift to apache::thrift
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@739644 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/threads')
-rw-r--r--test/threads/ThreadsClient.cpp10
-rw-r--r--test/threads/ThreadsServer.cpp10
2 files changed, 10 insertions, 10 deletions
diff --git a/test/threads/ThreadsClient.cpp b/test/threads/ThreadsClient.cpp
index 7ad6f00bb..24a1540f5 100644
--- a/test/threads/ThreadsClient.cpp
+++ b/test/threads/ThreadsClient.cpp
@@ -11,11 +11,11 @@
#include <thrift/concurrency/PosixThreadFactory.h>
using boost::shared_ptr;
-using namespace facebook::thrift;
-using namespace facebook::thrift::protocol;
-using namespace facebook::thrift::transport;
-using namespace facebook::thrift::server;
-using namespace facebook::thrift::concurrency;
+using namespace apache::thrift;
+using namespace apache::thrift::protocol;
+using namespace apache::thrift::transport;
+using namespace apache::thrift::server;
+using namespace apache::thrift::concurrency;
int main(int argc, char **argv) {
int port = 9090;
diff --git a/test/threads/ThreadsServer.cpp b/test/threads/ThreadsServer.cpp
index 826bbdb84..c4ce2c99d 100644
--- a/test/threads/ThreadsServer.cpp
+++ b/test/threads/ThreadsServer.cpp
@@ -12,11 +12,11 @@
#include <thrift/concurrency/PosixThreadFactory.h>
using boost::shared_ptr;
-using namespace facebook::thrift;
-using namespace facebook::thrift::protocol;
-using namespace facebook::thrift::transport;
-using namespace facebook::thrift::server;
-using namespace facebook::thrift::concurrency;
+using namespace apache::thrift;
+using namespace apache::thrift::protocol;
+using namespace apache::thrift::transport;
+using namespace apache::thrift::server;
+using namespace apache::thrift::concurrency;
class ThreadsTestHandler : virtual public ThreadsTestIf {