...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::compute::future — Holds the result of an asynchronous computation.
// In header: <boost/compute/async/future.hpp> template<typename T> class future { public: // construct/copy/destruct future(); future(const T &, const event &); future(const future< T > &); future & operator=(const future< T > &); ~future(); // public member functions T get(); bool valid() const; void wait() const; event get_event() const; };