summaryrefslogtreecommitdiff
path: root/ace/Flag_Manip.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
commit3df4acfa816441fc28a95dee6d0191a927145d95 (patch)
treeb5ae7ca44662cfd8e5c95f1826e4406021a606f5 /ace/Flag_Manip.h
parent60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff)
downloadATCD-pre-subset.tar.gz
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'ace/Flag_Manip.h')
-rw-r--r--ace/Flag_Manip.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/ace/Flag_Manip.h b/ace/Flag_Manip.h
deleted file mode 100644
index b9c5dc1cf91..00000000000
--- a/ace/Flag_Manip.h
+++ /dev/null
@@ -1,52 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file Flag_Manip.h
- *
- * $Id$
- *
- * This class includes the functions used for the Flag Manipulation.
- *
- * @author Priyanka Gontla <pgontla@doc.ece.uci.edu>
- */
-//=============================================================================
-
-#ifndef ACE_FLAG_MANIP_H
-#define ACE_FLAG_MANIP_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/OS.h"
-
-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);
-
- /// Clear flags associated with <handle>.
- static int clr_flags (ACE_HANDLE handle,
- int flags);
-
- /// Return the current setting of flags associated with <handle>.
- static int get_flags (ACE_HANDLE handle);
-
-
-};
-
-#if !defined (ACE_LACKS_INLINE_FUNCTIONS)
-#include "ace/Flag_Manip.i"
-#endif /* ACE_LACKS_INLINE_FUNCTIONS */
-
-#include "ace/post.h"
-#endif /* ACE_FLAG_MANIP_H */