More tests update
[ACE_TAO.git] / TAO / tests / COIOP / Client_Task.h
blob1f3fa76b0196efdef9bc67d85c2e66c64cb84af8
2 #ifndef COLLOCATED_TEST_CLIENT_TASK_H
3 #define COLLOCATED_TEST_CLIENT_TASK_H
4 #include /**/ "ace/pre.h"
5 #include "ace/Task.h"
7 #if !defined (ACE_LACKS_PRAGMA_ONCE)
8 # pragma once
9 #endif /* ACE_LACKS_PRAGMA_ONCE */
10 #include "tao/ORB.h"
13 /// Implement a Task to run the client as a thread
14 class Client_Task : public ACE_Task_Base
16 public:
18 /// Constructor
19 Client_Task (const ACE_TCHAR *input,
20 CORBA::ORB_ptr corb,
21 ACE_Thread_Manager *thr_mgr,
22 CORBA::Boolean result);
24 /// Thread entry point
25 int svc (void);
27 private:
28 const ACE_TCHAR *input_;
30 CORBA::ORB_var corb_;
32 // Boolean to indicate whether the invocation should work or not.
33 CORBA::Boolean result_;
36 #include /**/ "ace/post.h"
37 #endif /* COLLOCATED_TEST_CLIENT_TASK_H */