| 1145 | namespace yassl_int_cpp_local1 { // for explicit templates |
| 1146 | |
| 1147 | struct SumData { |
| 1148 | uint total_; |
| 1149 | SumData() : total_(0) {} |
| 1150 | void operator()(input_buffer* data) { total_ += data->get_remaining(); } |
| 1151 | }; |
| 1152 | |
| 1153 | |
| 1154 | struct SumBuffer { |