Files
concurrency-in-action/source/listing_4.8.cpp
2014-04-22 21:54:16 -04:00

10 lines
252 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);
};