Exemplo n.º 1
0
 void insert(const future<T> &future)
 {
     insert(future.get_event());
 }
Exemplo n.º 2
0
 future(const future<T> &other)
     : m_event(other.get_event())
 {
 }