diff options
Diffstat (limited to 'cpp/src/qpid/console/Schema.cpp')
-rw-r--r-- | cpp/src/qpid/console/Schema.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/qpid/console/Schema.cpp b/cpp/src/qpid/console/Schema.cpp index 1cc8b8ee02..31d947cdd5 100644 --- a/cpp/src/qpid/console/Schema.cpp +++ b/cpp/src/qpid/console/Schema.cpp @@ -51,7 +51,7 @@ SchemaArgument::SchemaArgument(framing::Buffer& buffer, bool forMethod) } } -Value* SchemaArgument::decodeValue(framing::Buffer& buffer) +Value::Ptr SchemaArgument::decodeValue(framing::Buffer& buffer) { return ValueFactory::newValue(typeCode, buffer); } @@ -73,7 +73,7 @@ SchemaProperty::SchemaProperty(framing::Buffer& buffer) desc = map.getAsString("desc"); } -Value* SchemaProperty::decodeValue(framing::Buffer& buffer) +Value::Ptr SchemaProperty::decodeValue(framing::Buffer& buffer) { return ValueFactory::newValue(typeCode, buffer); } @@ -89,7 +89,7 @@ SchemaStatistic::SchemaStatistic(framing::Buffer& buffer) desc = map.getAsString("desc"); } -Value* SchemaStatistic::decodeValue(framing::Buffer& buffer) +Value::Ptr SchemaStatistic::decodeValue(framing::Buffer& buffer) { return ValueFactory::newValue(typeCode, buffer); } |