summaryrefslogtreecommitdiff
path: root/cpp/src/qpidd.cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2012-03-20 16:39:03 +0000
committerAndrew Stitcher <astitcher@apache.org>2012-03-20 16:39:03 +0000
commit6703064f0b406ed95e0424f85fc8a950263553f2 (patch)
tree702d605b820a51cd363cee901bd120f2d5da0c15 /cpp/src/qpidd.cpp
parent07c6a631527dd17143f3fbc3629875e160f719b7 (diff)
downloadqpid-python-6703064f0b406ed95e0424f85fc8a950263553f2.tar.gz
QPID-2082: Put all of the C++ code in the source tree into a namespace
- This change moves the remaining non-example code in a namespace git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1302988 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpidd.cpp')
-rw-r--r--cpp/src/qpidd.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/src/qpidd.cpp b/cpp/src/qpidd.cpp
index a0e329ca9d..b5686c6ab8 100644
--- a/cpp/src/qpidd.cpp
+++ b/cpp/src/qpidd.cpp
@@ -29,6 +29,9 @@
#include <memory>
using namespace std;
+namespace qpid {
+namespace broker {
+
auto_ptr<QpiddOptions> options;
// Broker real entry; various system-invoked entrypoints call here.
@@ -87,3 +90,4 @@ int run_broker(int argc, char *argv[], bool hidden)
}
return 1;
}
+}}