]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/msgqueue.h
Removing more CodeWarrior project files.
[wxWidgets.git] / interface / wx / msgqueue.h
index 5a6347f794f412c988124e6ff7c67aec8a32e887..3c3432f8a22959d0d75492deb83c98f4a45303d4 100644 (file)
@@ -7,23 +7,25 @@
 /////////////////////////////////////////////////////////////////////////////
 
 /**
-
     wxMessageQueue allows passing messages between threads.
 
     This class should be typically used to communicate between the main and worker
     threads. The main thread calls wxMessageQueue::Post and the worker thread
     calls wxMessageQueue::Receive.
 
-    For this class a message is an object of arbitrary type T.
+    @tparam T
+        For this class a message is an object of arbitrary type T.
+
     Notice that often there is a some special message indicating that the thread
     should terminate as there is no other way to gracefully shutdown a thread
     waiting on the message queue.
 
     @nolibrary
-    @category{misc}
+    @category{threading}
 
     @see wxThread
 */
+template <typename T>
 class wxMessageQueue<T>
 {
 public: