summaryrefslogtreecommitdiff
path: root/ace/Handle_Ops.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Handle_Ops.h')
-rw-r--r--ace/Handle_Ops.h28
1 files changed, 15 insertions, 13 deletions
diff --git a/ace/Handle_Ops.h b/ace/Handle_Ops.h
index 7f50eba8270..66bdf4dfa34 100644
--- a/ace/Handle_Ops.h
+++ b/ace/Handle_Ops.h
@@ -6,7 +6,8 @@
*
* $Id$
*
- * This class consolidates the operations on the Handles.
+ * This class consolidates the operations on the Handles.
+ *
*
* @author Priyanka Gontla <pgontla@ece.uci.edu>
*/
@@ -27,21 +28,22 @@
class ACE_Time_Value;
-// = Operations on HANDLEs.
-namespace ACE
+class ACE_Export ACE_Handle_Ops
{
+public:
+ // = Operations on HANDLEs.
+
/**
- * Wait up to @a timeout> amount of time to actively open a device.
- * This method doesn't perform the @c connect, it just does the
- * timed wait.
+ * Wait up to <timeout> amount of time to actively open a device.
+ * This method doesn't perform the <connect>, it just does the timed
+ * wait...
*/
- extern ACE_Export ACE_HANDLE handle_timed_open (
- ACE_Time_Value *timeout,
- const ACE_TCHAR *name,
- int flags,
- int perms,
- LPSECURITY_ATTRIBUTES sa = 0);
-}
+ static ACE_HANDLE handle_timed_open (ACE_Time_Value *timeout,
+ const ACE_TCHAR *name,
+ int flags,
+ int perms,
+ LPSECURITY_ATTRIBUTES sa = 0);
+};
#include /**/ "ace/post.h"