summaryrefslogtreecommitdiff
path: root/ace/SV_Message.h
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-01 22:17:39 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-01 22:17:39 +0000
commit53284e215e3d3351a7d7e9c4b68f14b427fb4377 (patch)
tree97236ece363cff48fd287c780db4290da39b02cb /ace/SV_Message.h
parent7b7c52ad2abd228138ba1a948d5e28bf6dc3b880 (diff)
downloadATCD-53284e215e3d3351a7d7e9c4b68f14b427fb4377.tar.gz
ChangeLogTag:Wed Nov 1 14:11:48 2000 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'ace/SV_Message.h')
-rw-r--r--ace/SV_Message.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/ace/SV_Message.h b/ace/SV_Message.h
index 64d36b235a6..b93d9e531e5 100644
--- a/ace/SV_Message.h
+++ b/ace/SV_Message.h
@@ -1,18 +1,15 @@
/* -*- C++ -*- */
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// ace
-//
-// = FILENAME
-// SV_Message.h
-//
-// = AUTHOR
-// Doug Schmidt
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file SV_Message.h
+ *
+ * $Id$
+ *
+ * @author Doug Schmidt
+ */
+//=============================================================================
+
#ifndef ACE_SV_MESSAGE_H
#define ACE_SV_MESSAGE_H
@@ -24,10 +21,13 @@
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+/**
+ * @class ACE_SV_Message
+ *
+ * @brief Defines the header file for the C++ wrapper for message queues.
+ */
class ACE_Export ACE_SV_Message
{
- // = TITLE
- // Defines the header file for the C++ wrapper for message queues. */
public:
// = Initialization and termination methods.
ACE_SV_Message (long type = 0);
@@ -37,15 +37,15 @@ public:
long type (void) const;
void type (long);
+ /// Dump the state of an object.
void dump (void) const;
- // Dump the state of an object.
+ /// Declare the dynamic allocation hooks.
ACE_ALLOC_HOOK_DECLARE;
- // Declare the dynamic allocation hooks.
protected:
+ /// Type of the message.
long type_;
- // Type of the message.
};
#if defined (__ACE_INLINE__)