Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template connect_impl

boost::signals::connect_impl — A functor which connects two components. It must be specialized to support each component to be used with the library.

Synopsis

template<typename Input, typename Output, typename Enable = void> 
struct connect_impl {

  // public member functions
  void operator()(Input &, Output &) ;
  void operator()(Input &, const Output &) ;
  void operator()(const Input &, Output &) ;
  void operator()(const Input &, const Output &) ;
};

Description

connect_impl public member functions

  1. void operator()(Input & input, Output & output) ;

    Connects input to output.

  2. void operator()(Input & input, const Output & output) ;

    Connects input to output.

  3. void operator()(const Input & input, Output & output) ;

    Connects input to output.

  4. void operator()(const Input & input, const Output & output) ;

    Connects input to output.

Copyright © 2007 Stjepan Rajko

PrevUpHomeNext