Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class template member_property

boost::itl::member_property

Synopsis

template<class Type > 
class member_property : public boost::itl::property< Type > {
public:
  // construct/copy/destruct
  member_property(bool(Type::*)() const );

  // public member functions
  bool operator()(const Type &) const;
};

Description

member_property public construct/copy/destruct

  1. member_property(bool(Type::*)() const  pred);

member_property public member functions

  1. bool operator()(const Type & x) const;

PrevUpHomeNext