Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template slot_selector

boost::signals::slot_selector — Reference to a class instance and pointer to a class member function.

Synopsis

template<typename Signature, typename T> 
struct slot_selector {
  // types
  typedef Signature signature_type;
  typedef T         class_type;    

  // construct/copy/destruct
  slot_selector(unspecified, T &);

  T & object;
  unspecified func;
};

Description

slot_selector construct/copy/destruct

  1. slot_selector(unspecified func, T & object);
Copyright © 2007 Stjepan Rajko

PrevUpHomeNext