summaryrefslogtreecommitdiff
path: root/examples/Reactor
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-03-25 00:16:16 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-03-25 00:16:16 +0000
commit35c3c290bff12300023bd0e4db86cf5a138dff19 (patch)
tree4ca0c4cf0c41504a49af7afdb3addacec2c7102d /examples/Reactor
parent80221ce0258180843506814751bfe47498d079c4 (diff)
downloadATCD-35c3c290bff12300023bd0e4db86cf5a138dff19.tar.gz
*** empty log message ***
Diffstat (limited to 'examples/Reactor')
-rw-r--r--examples/Reactor/Multicast/Log_Wrapper.cpp1
-rw-r--r--examples/Reactor/Multicast/Log_Wrapper.h21
2 files changed, 11 insertions, 11 deletions
diff --git a/examples/Reactor/Multicast/Log_Wrapper.cpp b/examples/Reactor/Multicast/Log_Wrapper.cpp
index b7306b36371..9b98aca7990 100644
--- a/examples/Reactor/Multicast/Log_Wrapper.cpp
+++ b/examples/Reactor/Multicast/Log_Wrapper.cpp
@@ -2,7 +2,6 @@
// client.C
-
#include "Log_Wrapper.h"
Log_Wrapper::Log_Wrapper (void)
diff --git a/examples/Reactor/Multicast/Log_Wrapper.h b/examples/Reactor/Multicast/Log_Wrapper.h
index f560bb95f5f..859ed3c3ae6 100644
--- a/examples/Reactor/Multicast/Log_Wrapper.h
+++ b/examples/Reactor/Multicast/Log_Wrapper.h
@@ -1,18 +1,19 @@
/* -*- C++ -*- */
// $Id$
-
// log_wrapper.h
-// wrapper around sending log messages via multicast
#include "ace/Profile_Timer.h"
#include "ace/INET_Addr.h"
#include "ace/SOCK_Dgram_Mcast.h"
-#if !defined (_LM_WRAPPER_H)
-#define _LM_WRAPPER_H
+#if !defined (_LOG_WRAPPER_H)
+#define _LOG_WRAPPER_H
class Log_Wrapper
+ // = TITLE
+ // Provide a wrapper around sending log messages via IP
+ // multicast.
{
public:
Log_Wrapper (void);
@@ -21,11 +22,11 @@ public:
// = Types of logging messages.
enum ACE_Log_Priority
{
- LM_MESSAGE,
- LM_DEBUG,
- LM_WARNING,
- LM_ERROR,
- LM_EMERG
+ LOG_MESSAGE,
+ LOG_DEBUG,
+ LOG_WARNING,
+ LOG_ERROR,
+ LOG_EMERG
};
int open (const int port, const char* mcast_addr);
@@ -59,4 +60,4 @@ private:
// A logger object.
};
-#endif /* _LM_WRAPPER_H */
+#endif /* _LOG_WRAPPER_H */