2 #ifndef COLLOCATED_TEST_CLIENT_TASK_H
3 #define COLLOCATED_TEST_CLIENT_TASK_H
4 #include /**/ "ace/pre.h"
7 #if !defined (ACE_LACKS_PRAGMA_ONCE)
9 #endif /* ACE_LACKS_PRAGMA_ONCE */
13 /// Implement a Task to run the client as a thread
14 class Client_Task
: public ACE_Task_Base
18 Client_Task (const ACE_TCHAR
*input
,
20 ACE_Thread_Manager
*thr_mgr
,
21 CORBA::Boolean result
);
23 /// Thread entry point
27 const ACE_TCHAR
*input_
;
31 // Boolean to indicate whether the invocation should work or not.
32 CORBA::Boolean result_
;
35 #include /**/ "ace/post.h"
36 #endif /* COLLOCATED_TEST_CLIENT_TASK_H */