![]() |
Home | Libraries | People | FAQ | More |
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; };