Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class event_loop

boost::ui::event_loop — Event loop class.

Synopsis

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


class event_loop : private noncopyable {
public:
  // construct/copy/destruct
  event_loop();

  // public member functions
  bool is_running() const;
  void run();
  void exit();
};

Description

See Also:

Event loop (Wikipedia)

event_loop public construct/copy/destruct

  1. event_loop();

event_loop public member functions

  1. bool is_running() const;
    Returns true only if event loop is running.
  2. void run();
    Start the event loop.
  3. void exit();
    Exit from the event loop.

PrevUpHomeNext