/////////////////////////////////////////////////////////////////////////////
// Name: msgqueue.h
-// Purpose: documentation for wxMessageQueue<T> class
+// Purpose: interface of wxMessageQueue<T>
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
@nolibrary
@category{FIXME}
- @seealso
- wxThread
+ @see wxThread
*/
class wxMessageQueue<T>
{
Returns @true if the object had been initialized successfully, @false
if an error occurred.
*/
- bool IsOk();
+ bool IsOk() const;
/**
Add a message to this queue and signal the threads waiting for messages
*/
wxMessageQueue();
};
+