summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/framing/frame_functors.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/framing/frame_functors.h')
-rw-r--r--cpp/src/qpid/framing/frame_functors.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/cpp/src/qpid/framing/frame_functors.h b/cpp/src/qpid/framing/frame_functors.h
index 992d389faf..d915a270c2 100644
--- a/cpp/src/qpid/framing/frame_functors.h
+++ b/cpp/src/qpid/framing/frame_functors.h
@@ -74,14 +74,6 @@ public:
void operator()(const AMQFrame& f) { f.getBody()->encode(buffer); }
};
-class AccumulateContent
-{
- std::string& content;
-public:
- AccumulateContent(std::string& c) : content(c) {}
- void operator()(const AMQFrame& f) { content += f.castBody<AMQContentBody>()->getData(); }
-};
-
/**
* Sends a copy of the frame its applied to to the specified handler
*/