Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class index_event

boost::ui::index_event — Event class that holds some index in container.

Synopsis

// In header: <boost/ui/event.hpp>


class index_event : public boost::ui::event {
public:
  // types
  typedef index_type size_type;  // Integral type. 

  // construct/copy/destruct
  index_event();

  // public member functions
  size_type index() const;
};

Description

index_event public construct/copy/destruct

  1. index_event();

index_event public member functions

  1. size_type index() const;
    Returns index of the associated item in the container.

PrevUpHomeNext