Wt::Application::EventQueueItem Class Reference

Collaboration diagram for Wt::Application::EventQueueItem:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 EventQueueItem (Object *receiver, Event *event)
bool operator== (const EventQueueItem &other) const

Public Attributes

Objectreceiver
Eventevent

Detailed Description

Definition at line 101 of file application.h.


Constructor & Destructor Documentation

Wt::Application::EventQueueItem::EventQueueItem ( Object receiver,
Event event 
)

Definition at line 40 of file application.cpp.

00041         : receiver(receiver), event(event) {}


Member Function Documentation

bool Wt::Application::EventQueueItem::operator== ( const EventQueueItem other  )  const

Definition at line 43 of file application.cpp.

References event, receiver, and Wt::Event::type().

00043                                                                             {
00044     return (other.receiver == receiver && other.event->type() == event->type());
00045 }

Here is the call graph for this function:


Member Data Documentation

Event* Wt::Application::EventQueueItem::event

Definition at line 107 of file application.h.

Referenced by operator==(), and Wt::Application::postEvent().

Object* Wt::Application::EventQueueItem::receiver

Definition at line 106 of file application.h.

Referenced by operator==(), and Wt::Application::postEvent().


The documentation for this class was generated from the following files:

Generated Fri Jul 28 19:25:35 2006.
Copyright © 1998-2003 by the respective authors.

This document is licensed under the terms of the GNU Free Documentation License and may be freely distributed under the conditions given by this license.