summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2009-09-21 20:15:39 +0000
committerAndrew Stitcher <astitcher@apache.org>2009-09-21 20:15:39 +0000
commit36bca92fe6a1f67cfb28c307322e212b7f2ee79f (patch)
tree7b4c4dfb1b1e1845a72f78164f3fcf2bb139f5e6
parent752445013e0c18ead2795051fcb3713f6be14dbc (diff)
downloadqpid-python-36bca92fe6a1f67cfb28c307322e212b7f2ee79f.tar.gz
More namespace cleaning
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@817396 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/tests/qpid_stream.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/qpid_stream.cpp b/qpid/cpp/src/tests/qpid_stream.cpp
index 8e02baa8a0..8195bf390e 100644
--- a/qpid/cpp/src/tests/qpid_stream.cpp
+++ b/qpid/cpp/src/tests/qpid_stream.cpp
@@ -34,6 +34,9 @@
using namespace qpid::messaging;
using namespace qpid::sys;
+namespace qpid {
+namespace tests {
+
struct Args : public qpid::Options
{
std::string url;
@@ -139,10 +142,14 @@ struct Consume : Client
<< ", min=" << minLatency
<< ", max=" << maxLatency << std::endl;
}
- }
+ }
}
};
+}} // namespace qpid::tests
+
+using namespace qpid::tests;
+
int main(int argc, char** argv)
{
try {