Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class template chain

boost::signals::chain — Connects a number of components of the same type in a chain.

Synopsis

template<typename Signature, typename T> 
class chain {
public:
  // construct/copy/destruct
  chain(size_t, T * = NULL);
};

Description

chain construct/copy/destruct

  1. chain(size_t copies, T * component = NULL);

    Constructs a chain composed of instances of T. Constructs a chain composed of copies of component.

Copyright © 2007 Stjepan Rajko

PrevUpHomeNext