aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storageapi/messageapi/bucketinforeply.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'storage/src/vespa/storageapi/messageapi/bucketinforeply.cpp')
-rw-r--r--storage/src/vespa/storageapi/messageapi/bucketinforeply.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/storage/src/vespa/storageapi/messageapi/bucketinforeply.cpp b/storage/src/vespa/storageapi/messageapi/bucketinforeply.cpp
new file mode 100644
index 00000000000..6eb5f96e888
--- /dev/null
+++ b/storage/src/vespa/storageapi/messageapi/bucketinforeply.cpp
@@ -0,0 +1,19 @@
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+
+#include "bucketinforeply.h"
+#include <ostream>
+
+namespace storage::api {
+
+void
+BucketInfoReply::print(std::ostream& out, bool verbose,
+ const std::string& indent) const
+{
+ out << "BucketInfoReply(" << _result << ")";
+ if (verbose) {
+ out << " : ";
+ BucketReply::print(out, verbose, indent);
+ }
+}
+
+}