summaryrefslogtreecommitdiff
path: root/TAO/tests/Client_Leaks/Server_Task.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Client_Leaks/Server_Task.h')
-rw-r--r--TAO/tests/Client_Leaks/Server_Task.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/TAO/tests/Client_Leaks/Server_Task.h b/TAO/tests/Client_Leaks/Server_Task.h
new file mode 100644
index 00000000000..113ee2bf000
--- /dev/null
+++ b/TAO/tests/Client_Leaks/Server_Task.h
@@ -0,0 +1,33 @@
+//
+// $Id$
+//
+
+#ifndef CLIENT_LEAKS_SERVER_TASK_H
+#define CLIENT_LEAKS_SERVER_TASK_H
+#include "ace/pre.h"
+
+#include "tao/corba.h"
+#include "ace/Task.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+/// Implement a Task to run the experiments using multiple threads.
+class Server_Task : public ACE_Task_Base
+{
+public:
+ /// Constructor
+ Server_Task (CORBA::ORB_ptr orb,
+ ACE_Thread_Manager *thr_mgr);
+
+ /// Thread entry point
+ int svc (void);
+
+private:
+ /// Reference to the ORB
+ CORBA::ORB_var orb_;
+};
+
+#include "ace/post.h"
+#endif /* CLIENT_LEAKS_SERVER_TASK_H */