// -*- C++ -*- //============================================================================= /** * @file Flag_Manip.h * * $Id$ * * This class includes the functions used for the Flag Manipulation. * * @author Priyanka Gontla */ //============================================================================= #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/Global_Macros.h" class ACE_Export ACE_Flag_Manip { public: // = Set/get/clear various flags related to I/O HANDLE. /// Set flags associated with . static int set_flags (ACE_HANDLE handle, int flags); /// Clear flags associated with . static int clr_flags (ACE_HANDLE handle, int flags); /// Return the current setting of flags associated with . 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 */