NAME

ACE_IO_SAP - Defines the methods for the base class of the ACE_IO_SAP abstraction, which includes ACE_FILE and ACE_DEV.

SYNOPSIS

#include <ace/IO_SAP.h>

class ACE_IO_SAP { public: enum{ INVALID_HANDLE = -1 }; ~ACE_IO_SAP (void); int control (int cmd, void *) const; int enable (int value) const; int disable (int value) const; ACE_HANDLE get_handle (void) const; void set_handle (ACE_HANDLE handle); void dump (void) const; ACE_ALLOC_HOOK_DECLARE; protected: ACE_IO_SAP (void); private: ACE_HANDLE handle_; static pid_t pid_; };

Common I/O handle options related to files.

int enable (int value) const;

int disable (int value) const;

ACE_HANDLE get_handle (void) const;

void set_handle (ACE_HANDLE handle);

void dump (void) const;

ACE_ALLOC_HOOK_DECLARE;

AUTHOR

Doug Schmidt

LIBRARY

ace