Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template get_slot<Signature, T, typename boost::enable_if< detail::result_of_defined< typename detail::replace_return_type< Signature, T >::type > >::type>

boost::signals::get_slot<Signature,T,typename boost::enable_if< detail::result_of_defined< typename detail::replace_return_type< Signature,T >::type > >::type> — Support for function objects that for which boost::result_of is defined.

Synopsis

template<typename Signature, typename T> 
struct get_slot<Signature, T, typename boost::enable_if< detail::result_of_defined< typename detail::replace_return_type< Signature, T >::type > >::type> {

  // public member functions
  boost::function< Signature > operator()(T &) ;
  boost::function< Signature > operator()(const T &) ;
};

Description

get_slot public member functions

  1. boost::function< Signature > operator()(T & object) ;
  2. boost::function< Signature > operator()(const T & object) ;
Copyright © 2007 Stjepan Rajko

PrevUpHomeNext