Author: shuston
Date: Thu Oct 30 16:22:52 2008
New Revision: 709286
URL: http://svn.apache.org/viewvc?rev=709286&view=rev
Log:
Fix namespace reference usage to work on Windows
Modified:
incubator/qpid/trunk/qpid/cpp/src/qpid/broker/Queue.cpp
Modified: incubator/qpid/trunk/qpid/cpp/src/qpid/broker/Queue.cpp
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/qpid/broker/Queue.cpp?rev=709286&r1=709285&r2=709286&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/qpid/broker/Queue.cpp (original)
+++ incubator/qpid/trunk/qpid/cpp/src/qpid/broker/Queue.cpp Thu Oct 30 16:22:52
2008
@@ -749,7 +749,7 @@
persistenceId = _persistenceId;
}
-void Queue::encode(framing::Buffer& buffer) const
+void Queue::encode(Buffer& buffer) const
{
buffer.putShortString(name);
buffer.put(settings);
@@ -760,7 +760,7 @@
return name.size() + 1/*short string size octet*/ + settings.encodedSize();
}
-Queue::shared_ptr Queue::decode(QueueRegistry& queues, framing::Buffer& buffer)
+Queue::shared_ptr Queue::decode(QueueRegistry& queues, Buffer& buffer)
{
string name;
buffer.getShortString(name);