Files
concurrency-in-action/source/listing_4.8.cpp
2018-10-18 00:40:34 -05:00

9 lines
247 B
C++

template <>
class packaged_task<std::string(std::vector<char>*, int)> {
public:
template <typename Callable>
explicit packaged_task(Callable&& f);
std::future<std::string> get_future();
void operator()(std::vector<char>*, int);
};