diff options
author | Stephen D. Huston <shuston@apache.org> | 2010-01-12 21:16:46 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2010-01-12 21:16:46 +0000 |
commit | 0c3fff4ec5b4d28c59e8579236f16c1527e5d1c4 (patch) | |
tree | 5a4ec46bd98624fc53edeacaa11b04e010f6637c /cpp/src | |
parent | 8d11bd6d22e4631f07f26abd29b527b5aed1661f (diff) | |
download | qpid-python-0c3fff4ec5b4d28c59e8579236f16c1527e5d1c4.tar.gz |
Explicitly name qpid::framing::Buffer instead of framing::Buffer; resolves compile errors on Windows.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@898519 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/management/ManagementAgent.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/qpid/management/ManagementAgent.cpp b/cpp/src/qpid/management/ManagementAgent.cpp index 9620383bce..378e150a0f 100644 --- a/cpp/src/qpid/management/ManagementAgent.cpp +++ b/cpp/src/qpid/management/ManagementAgent.cpp @@ -1289,13 +1289,13 @@ void ManagementAgent::disallow(const std::string& className, const std::string& disallowed[std::make_pair(className, methodName)] = message; } -void ManagementAgent::SchemaClassKey::encode(framing::Buffer& buffer) const { +void ManagementAgent::SchemaClassKey::encode(qpid::framing::Buffer& buffer) const { buffer.checkAvailable(encodedSize()); buffer.putShortString(name); buffer.putBin128(hash); } -void ManagementAgent::SchemaClassKey::decode(framing::Buffer& buffer) { +void ManagementAgent::SchemaClassKey::decode(qpid::framing::Buffer& buffer) { buffer.checkAvailable(encodedSize()); buffer.getShortString(name); buffer.getBin128(hash); @@ -1305,14 +1305,14 @@ uint32_t ManagementAgent::SchemaClassKey::encodedSize() const { return 1 + name.size() + 16 /* bin128 */; } -void ManagementAgent::SchemaClass::encode(framing::Buffer& outBuf) const { +void ManagementAgent::SchemaClass::encode(qpid::framing::Buffer& outBuf) const { outBuf.checkAvailable(encodedSize()); outBuf.putOctet(kind); outBuf.putLong(pendingSequence); outBuf.putLongString(data); } -void ManagementAgent::SchemaClass::decode(framing::Buffer& inBuf) { +void ManagementAgent::SchemaClass::decode(qpid::framing::Buffer& inBuf) { inBuf.checkAvailable(encodedSize()); kind = inBuf.getOctet(); pendingSequence = inBuf.getLong(); @@ -1345,7 +1345,7 @@ void ManagementAgent::exportSchemas(std::string& out) { } } -void ManagementAgent::importSchemas(framing::Buffer& inBuf) { +void ManagementAgent::importSchemas(qpid::framing::Buffer& inBuf) { while (inBuf.available()) { string package; SchemaClassKey key; |