summaryrefslogtreecommitdiff
path: root/ace/Log_Record.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1996-11-30 00:33:43 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1996-11-30 00:33:43 +0000
commit2d27f44666189e87ff27436b35a0dd002a0cdfd7 (patch)
treedd496dde3c016a1db5d3882e1dc40c9af7e9aaf8 /ace/Log_Record.h
parent8460f65dd042d52eaaa80acfef7f288ab4ceb27a (diff)
downloadATCD-2d27f44666189e87ff27436b35a0dd002a0cdfd7.tar.gz
Eon
Diffstat (limited to 'ace/Log_Record.h')
-rw-r--r--ace/Log_Record.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/ace/Log_Record.h b/ace/Log_Record.h
index 84685fb7d96..5a19ddc2d03 100644
--- a/ace/Log_Record.h
+++ b/ace/Log_Record.h
@@ -14,18 +14,19 @@
//
// ============================================================================
-#if !defined (ACE_LM_RECORD_H)
-#define ACE_LM_RECORD_H
-
-#include "ace/ACE.h"
+// These need to go outside of the #ifdef to avoid problems with
+// circular dependencies...
#include "ace/Log_Priority.h"
+#include "ace/ACE.h"
+
+#if !defined (ACE_LOG_RECORD_H)
+#define ACE_LOG_RECORD_H
class ACE_Export ACE_Log_Record
{
// = TITLE
// Defines the structure of an ACE logging record.
public:
-friend ostream &operator << (ostream &, ACE_Log_Record &);
enum
{
MAXLOGMSGLEN = BUFSIZ * 4,
@@ -134,4 +135,4 @@ private:
};
#include "ace/Log_Record.i"
-#endif /* ACE_LM_Record_H */
+#endif /* ACE_LOG_RECORD_H */