diff options
author | Steve Huston <shuston@riverace.com> | 2004-04-13 19:08:50 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2004-04-13 19:08:50 +0000 |
commit | e3c8c3eb9a652fa7309e26f910ce5da3a6f8ca98 (patch) | |
tree | 4ddb7f6f1aa50057cb00c7ac57627083b7cdb0f6 /examples/Log_Msg | |
parent | 87fdba63afb1830ca15cb044f344d19061ce310d (diff) | |
download | ATCD-e3c8c3eb9a652fa7309e26f910ce5da3a6f8ca98.tar.gz |
ChangeLogTag:Wed Apr 7 12:27:19 2004 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'examples/Log_Msg')
-rw-r--r-- | examples/Log_Msg/Log_Msg_MFC/MFC_Log.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/examples/Log_Msg/Log_Msg_MFC/MFC_Log.h b/examples/Log_Msg/Log_Msg_MFC/MFC_Log.h index 1b887a402c3..657b0e8a914 100644 --- a/examples/Log_Msg/Log_Msg_MFC/MFC_Log.h +++ b/examples/Log_Msg/Log_Msg_MFC/MFC_Log.h @@ -22,22 +22,24 @@ class ACE_Log_Record; /** * @class MFC_Log * - * @brief A callback class for ACE_Log_Msg which sends output to Microsoft debugger + * @brief A callback class for ACE_Log_Msg which sends output to + * Microsoft debugger * * Register this class as a MSG_CALLBACK with the ACE_Log_Msg singleton and - * send debug output to the Microsoft debugger console window with ACE_DEBUG macros. + * send debug output to the Microsoft debugger console window with + * ACE_DEBUG macros. */ class MFC_Log : public virtual ACE_Log_Msg_Callback { public: - /// Constructor - MFC_Log(); + /// Constructor + MFC_Log(); - /// method called by ACE_Log_Msg to log an event - void log(ACE_Log_Record& log_record); + /// method called by ACE_Log_Msg to log an event + void log(ACE_Log_Record& log_record); - /// destructor - virtual ~MFC_Log(); + /// destructor + virtual ~MFC_Log(); }; |