diff options
author | Andrew Stitcher <astitcher@apache.org> | 2007-10-16 10:21:20 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2007-10-16 10:21:20 +0000 |
commit | 5113fdd829e956b6836c102c13b83fb8105a7453 (patch) | |
tree | 600ada669c06d834c4509ea6c277deeaefc9effa /cpp/src/qpid/framing/Value.cpp | |
parent | 0ae648d78f3970eb7fc96f000a5ba4f6444e4b6e (diff) | |
download | qpid-python-5113fdd829e956b6836c102c13b83fb8105a7453.tar.gz |
Implementation of 0-10 field tables
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@585097 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/framing/Value.cpp')
-rw-r--r-- | cpp/src/qpid/framing/Value.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/framing/Value.cpp b/cpp/src/qpid/framing/Value.cpp index 3e3cc4cbd5..a9f316667f 100644 --- a/cpp/src/qpid/framing/Value.cpp +++ b/cpp/src/qpid/framing/Value.cpp @@ -59,10 +59,10 @@ void DecimalValue::decode(Buffer& buffer){ } void FieldTableValue::encode(Buffer& buffer){ - buffer.putFieldTable(value); + buffer.put(value); } void FieldTableValue::decode(Buffer& buffer){ - buffer.getFieldTable(value); + buffer.get(value); } std::auto_ptr<Value> Value::decode_value(Buffer& buffer) |