summaryrefslogtreecommitdiff
path: root/ace/Flag_Manip.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Flag_Manip.h')
-rw-r--r--ace/Flag_Manip.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/ace/Flag_Manip.h b/ace/Flag_Manip.h
index 52d5a7b83f3..82222bad913 100644
--- a/ace/Flag_Manip.h
+++ b/ace/Flag_Manip.h
@@ -1,17 +1,17 @@
-// $Id$
-// ========================================================================
+//=============================================================================
+/**
+ * @file ACE_Flag_Manip.h
+ *
+ * $Id$
+ *
+ * This class includes the functions used for the Flag Manipulation.
+ *
+ *
+ * @author Priyanka Gontla <pgontla@ece.uci.edu>
+ */
+//=============================================================================
-// FILENAME
-// ACE_Flag_Manip.h
-//
-// DESCRIPTION
-// This class includes the functions used for the Flag Manipulation.
-//
-// AUTHOR
-// Priyanka Gontla <pgontla@ece.uci.edu>
-
-// =======================================================================
#ifndef ACE_FLAG_MANIP_H
#define ACE_FLAG_MANIP_H
@@ -28,16 +28,16 @@ class ACE_Export ACE_Flag_Manip
public:
// = Set/get/clear various flags related to I/O HANDLE.
+ /// Set flags associated with <handle>.
static int set_flags (ACE_HANDLE handle,
int flags);
- // Set flags associated with <handle>.
+ /// Clear flags associated with <handle>.
static int clr_flags (ACE_HANDLE handle,
int flags);
- // Clear flags associated with <handle>.
+ /// Return the current setting of flags associated with <handle>.
static int get_flags (ACE_HANDLE handle);
- // Return the current setting of flags associated with <handle>.
};