1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
.TH ACE_Stream_Type 3 "1 Dec 2001" "ACE" \" -*- nroff -*-
.ad l
.nh
.SH NAME
ACE_Stream_Type \- Define the methods for handling the configuration of .
.SH SYNOPSIS
.br
.PP
\fC#include <Service_Types.h>\fR
.PP
Inherits \fBACE_Service_Type_Impl\fR.
.PP
.SS Public Methods
.in +1c
.ti -1c
.RI "\fBACE_Stream_Type\fR (void *s, const \fBACE_TCHAR\fR *identifier, u_int flags = 0)"
.br
.ti -1c
.RI "\fB~ACE_Stream_Type\fR (void)"
.br
.ti -1c
.RI "virtual int \fBsuspend\fR (void) const"
.br
.ti -1c
.RI "virtual int \fBresume\fR (void) const"
.br
.ti -1c
.RI "virtual int \fBinit\fR (int argc, \fBACE_TCHAR\fR *argv[]) const"
.br
.ti -1c
.RI "virtual int \fBfini\fR (void) const"
.br
.ti -1c
.RI "virtual int \fBinfo\fR (\fBACE_TCHAR\fR **str, size_t len) const"
.br
.ti -1c
.RI "int \fBpush\fR (\fBACE_Module_Type\fR *new_module)"
.br
.RI "\fIAdd a new to the top of the .\fR"
.ti -1c
.RI "int \fBremove\fR (\fBACE_Module_Type\fR *module)"
.br
.RI "\fISearch for <module> and remove it from the .\fR"
.ti -1c
.RI "\fBACE_Module_Type\fR* \fBfind\fR (const \fBACE_TCHAR\fR *mod_name) const"
.br
.RI "\fILocate the with <mod_name>.\fR"
.ti -1c
.RI "void \fBdump\fR (void) const"
.br
.RI "\fIDump the state of an object.\fR"
.in -1c
.SS Public Attributes
.in +1c
.ti -1c
.RI "\fBACE_ALLOC_HOOK_DECLARE\fR"
.br
.RI "\fIDeclare the dynamic allocation hooks.\fR"
.in -1c
.SS Private Attributes
.in +1c
.ti -1c
.RI "\fBACE_Module_Type\fR* \fBhead_\fR"
.br
.RI "\fIPointer to the head of the list.\fR"
.in -1c
.SH DETAILED DESCRIPTION
.PP
Define the methods for handling the configuration of .
.PP
.SH CONSTRUCTOR & DESTRUCTOR DOCUMENTATION
.PP
.SS ACE_Stream_Type::ACE_Stream_Type (void * s, const \fBACE_TCHAR\fR * identifier, u_int flags = 0)
.PP
.SS ACE_Stream_Type::~ACE_Stream_Type (void)
.PP
.SH MEMBER FUNCTION DOCUMENTATION
.PP
.SS void ACE_Stream_Type::dump (void) const
.PP
Dump the state of an object.
.PP
Reimplemented from \fBACE_Service_Type_Impl\fR.
.SS \fBACE_Module_Type\fR * ACE_Stream_Type::find (const \fBACE_TCHAR\fR * mod_name) const
.PP
Locate the with <mod_name>.
.PP
.SS virtual int ACE_Stream_Type::fini (void) const\fC [virtual]\fR
.PP
Reimplemented from \fBACE_Service_Type_Impl\fR.
.SS virtual int ACE_Stream_Type::info (\fBACE_TCHAR\fR ** str, size_t len) const\fC [virtual]\fR
.PP
Reimplemented from \fBACE_Service_Type_Impl\fR.
.SS virtual int ACE_Stream_Type::init (int argc, \fBACE_TCHAR\fR * argv[]) const\fC [virtual]\fR
.PP
Reimplemented from \fBACE_Service_Type_Impl\fR.
.SS int ACE_Stream_Type::push (\fBACE_Module_Type\fR * new_module)
.PP
Add a new to the top of the .
.PP
.SS int ACE_Stream_Type::remove (\fBACE_Module_Type\fR * module)
.PP
Search for <module> and remove it from the .
.PP
.SS virtual int ACE_Stream_Type::resume (void) const\fC [virtual]\fR
.PP
Reimplemented from \fBACE_Service_Type_Impl\fR.
.SS virtual int ACE_Stream_Type::suspend (void) const\fC [virtual]\fR
.PP
Reimplemented from \fBACE_Service_Type_Impl\fR.
.SH MEMBER DATA DOCUMENTATION
.PP
.SS ACE_Stream_Type::ACE_ALLOC_HOOK_DECLARE
.PP
Declare the dynamic allocation hooks.
.PP
Reimplemented from \fBACE_Service_Type_Impl\fR.
.SS \fBACE_Module_Type\fR * ACE_Stream_Type::head_\fC [private]\fR
.PP
Pointer to the head of the list.
.PP
.SH AUTHOR
.PP
Generated automatically by Doxygen for ACE from the source code.
|