1 #ifndef SERVICE_CONFIG_STREAM_DLL_H
2 #define SERVICE_CONFIG_STREAM_DLL_H
4 #include /**/ "ace/pre.h"
6 #include "Service_Config_Stream_DLL_Export.h"
8 #if !defined (ACE_LACKS_PRAGMA_ONCE)
10 #endif /* ACE_LACKS_PRAGMA_ONCE */
13 #include "ace/Stream.h"
14 #include "ace/Module.h"
16 typedef ACE_Task
<ACE_SYNCH
> MT_Task
;
17 typedef ACE_Stream
<ACE_SYNCH
> MT_Stream
;
18 typedef ACE_Module
<ACE_SYNCH
> MT_Module
;
20 class Service_Config_Stream_DLL_Export Test_Task
: public MT_Task
23 //FUZZ: disable check_for_lack_ACE_OS
24 virtual int open (void *);
25 virtual int close (u_long
);
26 //FUZZ: enable check_for_lack_ACE_OS
28 virtual int init (int, ACE_TCHAR
*[]);
32 // Task to verify the order and operation of the stream assembly
33 // Command line args give the stream name (to look it up) and the names
34 // of the tasks that should be there, from head to tail.
35 class Service_Config_Stream_DLL_Export Stream_Order_Test
: public MT_Task
38 virtual int init (int, ACE_TCHAR
*[]);
41 #include /**/ "ace/post.h"
42 #endif /* SERVICE_CONFIG_STREAM_DLL_H */