3 //=============================================================================
7 * @author Gerhard Lenzer
9 //=============================================================================
14 #include /**/ "ace/pre.h"
16 #include "ace/IO_SAP.h"
18 #if !defined (ACE_LACKS_PRAGMA_ONCE)
20 #endif /* ACE_LACKS_PRAGMA_ONCE */
22 #include "ace/DEV_Addr.h"
24 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
29 * @brief Defines the member functions for the base class of the
30 * ACE_DEV abstraction.
32 class ACE_Export ACE_DEV
: public ACE_IO_SAP
35 /// Close down the DEVICE
38 /// Dump the state of an object.
41 /// Declare the dynamic allocation hooks.
42 ACE_ALLOC_HOOK_DECLARE
;
45 * Disable signal @a signum
46 * This is here to prevent Win32 from
47 * disabling SPIPE using socket calls
49 int disable (int signum
) const ;
52 /// Ensure that this class is an abstract base class
56 ACE_END_VERSIONED_NAMESPACE_DECL
58 #if defined (__ACE_INLINE__)
59 #include "ace/DEV.inl"
60 #endif /* __ACE_INLINE__ */
62 #include /**/ "ace/post.h"
63 #endif /* ACE_DEV_H */