Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / MT_BiDir / Client_Task.h
blobcf414bdc1bd7dda49dd068149936a0ef922be96b
2 #ifndef MT_BIDIR_CLIENT_TASK_H
3 #define MT_BIDIR_CLIENT_TASK_H
4 #include /**/ "ace/pre.h"
6 #include "ace/Task.h"
8 #if !defined (ACE_LACKS_PRAGMA_ONCE)
9 # pragma once
10 #endif /* ACE_LACKS_PRAGMA_ONCE */
12 #include "tao/ORB.h"
15 /// Implement a Task to run the experiments using multiple threads.
16 class Client_Task : public ACE_Task_Base
18 public:
19 /// Constructor
20 Client_Task (CORBA::ORB_ptr orb,
21 ACE_Thread_Manager *thr_mgr);
23 /// Thread entry point
24 int svc ();
26 private:
27 /// Reference to the ORB
28 CORBA::ORB_var orb_;
31 #include /**/ "ace/post.h"
32 #endif /* MT_BIDIR_CLIENT_TASK_H */