#include <Module.h>
Inheritance diagram for ACE_Module_Base:

| Public Types | |
| enum | { M_FLAGS_NOT_SET = 0, M_DELETE_READER = 1, M_DELETE_WRITER = 2, M_DELETE = 3, M_DELETE_NONE = 4 } | 
Certain C++ compilers, e.g., the HP/UX 10.x and 9.x compilers, seem to fail if enums are defined inside a template, hence we have to move them into a base class.
Definition at line 38 of file Module.h.
| 
 | 
| 
 
 Definition at line 41 of file Module.h. 
 00042   {
00043     /// Indicates that the flags have not been set
00044     M_FLAGS_NOT_SET = 0,
00045 
00046     /// Indicates that <close> should delete the writer Task.
00047     M_DELETE_READER = 1,
00048 
00049     /// Indicates that <close> should delete the reader Task.
00050     M_DELETE_WRITER = 2,
00051 
00052     /// Indicates that <close> deletes the Tasks.
00053     /**
00054      * Don't change this value without updating the same enum in class
00055      * ACE_Stream...
00056      * The <M_DELETE_READER> and <M_DELETE_WRITER> flags may be or'ed
00057      * together.
00058      */
00059     M_DELETE = 3,
00060 
00061     /// Indicates that <close> should not delete any Tasks.
00062     M_DELETE_NONE = 4
00063   };
 | 
 1.3.6
 
1.3.6