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.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/ace/Handle_Ops.h b/ace/Handle_Ops.h
deleted file mode 100644
index 66bdf4dfa34..00000000000
--- a/ace/Handle_Ops.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file Handle_Ops.h
- *
- * $Id$
- *
- * This class consolidates the operations on the Handles.
- *
- *
- * @author Priyanka Gontla <pgontla@ece.uci.edu>
- */
-//=============================================================================
-
-#ifndef ACE_HANDLE_OPS_H
-#define ACE_HANDLE_OPS_H
-
-#include /**/ "ace/pre.h"
-
-#include "ace/ACE_export.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "ace/Global_Macros.h"
-
-class ACE_Time_Value;
-
-class ACE_Export ACE_Handle_Ops
-{
-public:
- // = Operations on HANDLEs.
-
- /**
- * 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...
- */
- 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"
-
-#endif /* ACE_HANDLE_OPS_H */