| 65 | } |
| 66 | |
| 67 | inline size_t CopyTo(BufferedTransformation &target, const std::string &channel=DEFAULT_CHANNEL) const |
| 68 | { |
| 69 | size_t len = m_tail-m_head; |
| 70 | target.ChannelPut(channel, buf+m_head, len); |
| 71 | return len; |
| 72 | } |
| 73 | |
| 74 | inline size_t CopyTo(BufferedTransformation &target, size_t copyMax, const std::string &channel=DEFAULT_CHANNEL) const |
| 75 | { |
no outgoing calls