[Wgui-cvs] wgui/src wg_message_server.cpp,1.27,1.28
Status: Beta
Brought to you by:
greenwire
|
From: Rob W. <gre...@us...> - 2004-06-03 18:41:00
|
Update of /cvsroot/wgui/wgui/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6848/src Modified Files: wg_message_server.cpp Log Message: Documentation fixes. Index: wg_message_server.cpp =================================================================== RCS file: /cvsroot/wgui/wgui/src/wg_message_server.cpp,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** wg_message_server.cpp 2 Apr 2004 17:26:16 -0000 1.27 --- wg_message_server.cpp 3 Jun 2004 18:40:52 -0000 1.28 *************** *** 155,159 **** --- 155,164 ---- { public: + //! The functor constructor + //! \param pClient The destination of the message that is being checked Duplicate_APP_PAINT(const CMessageClient* pClient) : m_pClient(pClient) { } + //! Checks to see if the message is a duplicate of an existing APP_PAINT message + //! \param pMessage A pointer to the message that is being checked against + //! \return true of the message is a duplicate bool operator() (CMessage* pMessage) const { *************** *** 163,166 **** --- 168,172 ---- private: + //! The destination of the message that is being checked const CMessageClient* m_pClient; }; |