diff options
| author | Stephen D. Huston <shuston@apache.org> | 2008-10-30 23:12:22 +0000 |
|---|---|---|
| committer | Stephen D. Huston <shuston@apache.org> | 2008-10-30 23:12:22 +0000 |
| commit | 962869a1b3e33711a831a46442a2af5b069f92e9 (patch) | |
| tree | 8a225197d5cac7f2b902b4fdb9e33daa57f69fb1 /cpp/src/qpid/broker/MessageStoreModule.cpp | |
| parent | e08ee65d4d580187496683b57f90f7377c621b23 (diff) | |
| download | qpid-python-962869a1b3e33711a831a46442a2af5b069f92e9.tar.gz | |
Adjust namespace references to work with MSVC
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@709281 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/MessageStoreModule.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/MessageStoreModule.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/MessageStoreModule.cpp b/cpp/src/qpid/broker/MessageStoreModule.cpp index c9528b9d98..20f5b98b6b 100644 --- a/cpp/src/qpid/broker/MessageStoreModule.cpp +++ b/cpp/src/qpid/broker/MessageStoreModule.cpp @@ -26,9 +26,11 @@ #define TRANSFER_EXCEPTION(fn) try { fn; } catch (std::exception& e) { throw Exception(e.what()); } using boost::intrusive_ptr; -using namespace qpid::broker; using qpid::framing::FieldTable; +namespace qpid { +namespace broker { + MessageStoreModule::MessageStoreModule(MessageStore* _store) : store(_store) {} MessageStoreModule::~MessageStoreModule() @@ -162,3 +164,5 @@ void MessageStoreModule::collectPreparedXids(std::set<std::string>& xids) { TRANSFER_EXCEPTION(store->collectPreparedXids(xids)); } + +}} // namespace qpid::broker |
