diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2012-03-20 16:39:03 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2012-03-20 16:39:03 +0000 |
| commit | 47f6c20c51d17d98f04076ced64c2291af125439 (patch) | |
| tree | 702d605b820a51cd363cee901bd120f2d5da0c15 /cpp/src/qpid/broker/Queue.cpp | |
| parent | d30bd25ceec3ccd2e6d89fb173cc0966ba4dbdf7 (diff) | |
| download | qpid-python-47f6c20c51d17d98f04076ced64c2291af125439.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/qpid/broker/Queue.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/Queue.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/Queue.cpp b/cpp/src/qpid/broker/Queue.cpp index 01ce017289..d79e24ee0e 100644 --- a/cpp/src/qpid/broker/Queue.cpp +++ b/cpp/src/qpid/broker/Queue.cpp @@ -56,7 +56,9 @@ #include <boost/intrusive_ptr.hpp> -using namespace qpid::broker; +namespace qpid { +namespace broker { + using namespace qpid::sys; using namespace qpid::framing; using qpid::management::ManagementAgent; @@ -1706,3 +1708,5 @@ void Queue::UsageBarrier::destroy() parent.deleted = true; while (count) parent.messageLock.wait(); } + +}}
\ No newline at end of file |
