Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template connect_impl<Input, Output>

boost::signals::connect_impl<Input,Output> — Support for components using the signal data transport mechanism.

Synopsis

template<typename Input, typename Output> 
struct connect_impl<Input, Output> {

  // 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) ;
  2. void operator()(Input & input, const Output & output) ;
  3. void operator()(const Input & input, Output & output) ;
  4. void operator()(const Input & input, const Output & output) ;
Copyright © 2007 Stjepan Rajko

PrevUpHomeNext