Commit c687b56c authored by Dominik Charousset's avatar Dominik Charousset

Add missing member functions

parent d34b0e51
......@@ -68,6 +68,16 @@ public:
// -- interface for the upper layer ------------------------------------------
template <class LowerLayerPtr>
static bool can_send_more(LowerLayerPtr down) noexcept {
return down->can_send_more();
}
template <class LowerLayerPtr>
static auto handle(LowerLayerPtr down) noexcept {
return down->handle();
}
template <class LowerLayerPtr>
void begin_message(LowerLayerPtr down) {
down->begin_output();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment