2 #ifndef JAWS_PIPELINE_H
3 #define JAWS_PIPELINE_H
5 #include "ace/config-all.h"
7 #if !defined (ACE_LACKS_PRAGMA_ONCE)
9 #endif /* ACE_LACKS_PRAGMA_ONCE */
11 #include "ace/Service_Config.h"
12 #include "ace/Stream.h"
13 #include "ace/Module.h"
16 typedef ACE_Stream
<ACE_NULL_SYNCH
> JAWS_Pipeline_Stream
;
17 typedef ACE_Module
<ACE_NULL_SYNCH
> JAWS_Pipeline_Module
;
18 typedef ACE_Task
<ACE_NULL_SYNCH
> JAWS_Pipeline_Task
;
20 class JAWS_Pipeline
: public JAWS_Pipeline_Task
22 // Methods that are common to pipeline components
28 virtual int open (void * = 0);
29 virtual int close (u_long
= 0);
32 #include "JAWS_Pipeline_Handler.h"
34 #endif /* !defined (JAWS_PIPELINE_H) */